-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (33 loc) · 1023 Bytes
/
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
# reqwest = { version = "0.11.18", features = ["json", "blocking"] }
# tokio = { version = "1.28.2", features = ["full"] }
# thiserror = "1.0.40"
# anyhow = "1.0"
[workspace]
members = [
"crates/nomi-core",
"crates/client",
"crates/nomi-modding",
]
resolver = "2"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size. 3 - for speed
lto = true
codegen-units = 1
panic = "abort"
[workspace.dependencies]
async-trait = "0.1.73"
tokio = { version = "1.38.1", features = ["rt", "macros", "process"] }
tokio-stream = "0.1.15"
tokio-util = "0.7.11"
itertools = "0.13.0"
typed-builder = "0.18.2"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_path_to_error = "0.1"
serde_json = "1.0"
toml = "0.8.0"
anyhow = "1.0"
thiserror = "1.0.48"
reqwest = { version = "0.12.5", features = ["json", "blocking", "stream"] }
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}