boomack-cli 0.5.0

CLI client for Boomack
[package]

name = "boomack-cli"

version = "0.5.0"



exclude = ["/.git*", "/*.cmd", "/*.sh", "/*.ps1", "/*.pfx", "/.gitlab-ci.yml"]



authors = ["Tobias Kiertscher <dev@mastersign.de>"]

description = "CLI client for Boomack"

license = "MIT"

readme = "src/README.md"

homepage = "https://boomack.com"



edition = "2024"



# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



[[bin]]

name = "bo"

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.4.1", path = "lib" }

regex = "1"

clap = { version = "4", features = ["derive", "unicode", "wrap_help"] }

sysinfo = "0.37"

termcolor = "1"

atty = "0.2"

serde = { version = "1", features = ["derive"] }

serde_json = "1"

yaml-rust = "0.4"

http-types = { version = "2" }

notify = { version = "8", default-features = false }