/ Cargo.toml
Cargo.toml
1 [package] 2 name = "laminar" 3 version = "0.1.0" 4 edition = "2024" 5 6 [dependencies] 7 deboa = { git = "https://github.com/ararog/deboa", branch = "develop" } 8 deboa-extras = { git = "https://github.com/ararog/deboa", branch = "develop" } 9 deboa-macros = { git = "https://github.com/ararog/deboa", branch = "develop" } 10 dirs = "6.0.0" 11 futures-util = { version = "0.3.32", features = ["io"] } 12 indicatif = "0.18.4" 13 log = "0.4.29" 14 min_logger = "0.3.0" 15 serde = { version = "1.0.228", features = ["derive"] } 16 serde_json = "1.0.149" 17 simple_logger = "5.2.0" 18 terminal_size = "0.4.4" 19 tokio = { version = "1.51.1", features = ["full"] } 20 toml = "1.1.2" 21 [profile.release] 22 opt-level = "z" # Optimize for size. 23 lto = true # Enable Link Time Optimization 24 codegen-units = 1 # Reduce number of codegen units to increase optimizations. 25 panic = "abort" # Abort on panic 26 strip = true # Automatically strip symbols from the binary.