16 lines
No EOL
436 B
TOML
16 lines
No EOL
436 B
TOML
[package]
|
|
name = "server-commons"
|
|
edition = "2024"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
serde = "1.0.219"
|
|
toml = "0.8.21"
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
lto = true # Link-time optimization.
|
|
opt-level = 3 # Optimization level 3.
|
|
codegen-units = 1 # Maximum size reduction optimizations. |