-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
63 lines (60 loc) · 1.9 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
# for actual release
[profile.release]
codegen-units = 1
opt-level = 3
lto = true
debug = false
# for quick dev
# currently mlua only performs it's special linking steps on a release build
# so you can't use a debug build and get a usable dll. This profile will build
# a lot faster if you want to do iterative testing.
#[profile.release]
#opt-level = 3
#lto = "thin"
#debug = false
[workspace.dependencies]
anyhow = "1"
arcstr = { version = "1" }
arrayvec = { version = "0.7", features = ["serde"] }
base64 = { version = "0.22" }
bincode = { version = "1" }
bytes = "1"
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
compact_str = { version = "0.8", features = ["serde"] }
crossbeam = { version = "0.8" }
enumflags2 = "0.7.8"
env_logger = "0.11.0"
fixedstr = { version = "0.5.5", features = ["serde"] }
futures = { version = "0.3" }
fxhash = "0.2"
handlebars = { version = "6" }
hdrhistogram = { version = "7" }
humantime = { version = "2" }
immutable-chunkmap = { version = "2.0.4", features = ["serde"] }
indexmap = { version = "2", features = ["serde"] }
log = "0.4.20"
nalgebra = { version = "0.33", features = ["serde-serialize"] }
netidx-archive = { version = "0.27.1" }
netidx-protocols = { version = "0.27" }
netidx = { version = "0.27" }
once_cell = "1"
parking_lot = "0.12"
paste = "1"
pin-project = { version = "1" }
rand = { version = "0.8" }
regex = { version = "1" }
serde_derive = "1"
serde_json = { version = "1" }
serde = { version = "1", features = ["rc"] }
simplelog = "0.12"
sled = { version = "0.34" }
smallvec = { version = "1", features = ["const_generics", "union", "serde"] }
tokio = { version = "1", features = ["full"] }
uuid = { version = "1", features = ["v4", "serde"] }
warp = { version = "0.3", features = ["tls"] }
zstd = { version = "0.13" }
[workspace]
resolver = "2"
members = ["dcso3", "bflib", "bfdb", "bfprotocols", "yats"]
exclude = ["bftools"]