-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
57 lines (52 loc) · 1.13 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
[workspace]
members = [
"crates/hyperqueue",
"crates/tako",
"crates/pyhq"
]
default-members = [
"crates/hyperqueue",
"crates/tako"
]
resolver = "2"
[workspace.package]
rust-version = "1.81.0"
edition = "2021"
authors = ["Ada Böhm <[email protected]>", "Jakub Beránek <[email protected]>"]
[workspace.dependencies]
tokio = "1"
log = "0.4"
env_logger = { version = "0.11", features = ["color"] }
clap = "4"
clap_complete = "4"
serde = { version = "1", features = ["rc"] }
serde_json = "1"
serde_bytes = "0.11"
bytes = "1"
chrono = "0.4"
orion = "0.17"
smallvec = "1"
bincode = "1"
futures = "0.3"
tokio-util = "0.7"
byteorder = "1"
hex = "0.4"
rand = "0.8"
gethostname = "0.5"
thiserror = "1"
tempfile = "3.12.0"
tracing = "0.1"
anyhow = "1"
nix = { version = "0.29", features = ["process", "signal"] }
bstr = { version = "1.9", features = ["serde"] }
psutil = "3"
thin-vec = { version = "0.2", features = ["serde"] }
[profile.release]
panic = "abort"
# Profile designed for the most optimized release build that is distributed
# to users.
[profile.dist]
inherits = "release"
lto = true
codegen-units = 1
debug = "line-tables-only"