-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (60 loc) · 1.35 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "proxy_v2"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[build-dependencies]
static-files = "0.2.3"
[features]
# Enable the 'admire' feature to include rust-icc dependency
# and to add capacity to connect to the ADMIRE IC
# It requires libicc
admire = ["rust-icc"]
[dependencies]
rust-icc={path = "libs/rust-icc/", optional = true }
bincode = "1.3.3"
clap = { version = "4.4.6", features = ["derive"] }
colored = "2.0.4"
dirs = "5.0.1"
env_logger = "0.10.0"
gethostname = "0.4.3"
libc = "0.2.150"
log = "0.4.20"
md5 = "0.7.0"
pathsearch = "0.2.0"
prometheus-parse = "0.2.4"
reqwest = { version = "0.11.22", features = ["blocking", "json"] }
retry = "2.0.0"
rouille = "3.6.2"
serde = { version = "1.0.188", features = ["derive"] }
serde-binary = "0.5.0"
serde_json = "1.0.107"
static-files = "0.2.3"
sysinfo = "0.29.10"
url = "2.4.1"
users = "0.11.0"
rayon = "1.8.1"
meval = "0.2.0"
anyhow = "1.0.79"
regex = "1.10.3"
which = "6.0.2"
lazy_static = "1.5.0"
proc-maps = "0.4.0"
elf = "0.7.4"
[lib]
name = "proxyclient"
path = "src/lib.rs"
crate-type = ["cdylib"] # Creates dynamic lib
# crate-type = ["staticlib"] # Creates static lib
[[bin]]
name = "proxy_v2"
path = "src/main.rs"
[[bin]]
name = "srun"
path = "src/srun.rs"
[[bin]]
name = "proxy_run"
path = "src/launcher.rs"
[[bin]]
name = "proxy_trace_exporter"
path = "src/trace_exporter.rs"