/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "bonf1re"
 3  version = "0.1.0"
 4  edition = "2024"
 5  license = "MIT OR Apache-2.0"
 6  rust-version = "1.86"
 7  authors = ["B1nary <zero@b1nary.cc>"]
 8  readme = "README.md"
 9  
10  [profile.release]
11  opt-level = 'z'     # Optimize for size
12  lto = true          # Enable link-time optimization
13  codegen-units = 1   # Reduce number of codegen units to increase optimizations
14  panic = 'abort'     # Abort on panic
15  strip = true        # Strip symbols from binary*
16  
17  [dependencies]
18  axum = { version = "0.8.3", features = ["multipart"] }
19  futures = "0.3.31"
20  if-addrs = "0.13.4"
21  tokio = { version = "1.44.2", features = ["full"] }
22  tokio-util = { version = "0.7.14", features = ["full"] }
23  tower-http = { version = "0.6.2", features = ["fs", "timeout", "trace"] }
24  tracing = "0.1.41"
25  tracing-subscriber = "0.3.19"