-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 868 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 868 Bytes
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
[workspace]
members = ["local", "central", "shared"]
resolver = "2"
[workspace.dependencies]
beam-lib = { git = "https://github.com/samply/beam", features = [
"http-util",
], branch = "develop" }
clap = { version = "4.4", features = ["derive", "env"] }
once_cell = "1"
tokio = { version = "1", default-features = false, features = [
"macros",
"rt-multi-thread",
] }
serde = { version = "1", features = ["derive"] }
futures = "0.3"
shared = { path = "./shared" }
tracing = "0.1"
tracing-subscriber = "0.3.0"
anyhow = "1"
[profile.release]
#opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.
[profile.bloat]
inherits = "release"
strip = false