[package] name = "boomack-cli" version = "0.3.3" authors = ["Tobias Kiertscher "] description = "CLI client for Boomack" license = "MIT" readme = "src/README.md" homepage = "https://boomack.com" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "boom" path = "src/main.rs" [profile.release] opt-level = "z" # s: optimize for size, z: also turn of loop vectorization lto = true # link time optimizations codegen-units = 1 strip = false # (do not) strip symbols from binary panic = "unwind" # unwind/abort (do not) show stack trace, using debug symbols [dependencies] boomack = { version = "0.3.2", path = "lib" } regex = "1" clap = { version = "4", features = ["derive", "unicode", "wrap_help"] } sysinfo = "0.28" termcolor = "1" atty = "0.2" serde = { version = "1", features = ["derive"] } serde_json = "1" yaml-rust = "0.4" http-types = { version = "2" } notify = { version = "5", default-features = false }