blahrs/blahctl/Cargo.toml
oxalica b97ce5f29c
Some checks are pending
CI / Code style (push) Waiting to run
CI / Test beta (push) Waiting to run
CI / Test stable (push) Waiting to run
CI / Flake package (push) Waiting to run
Deploy OpenAPI doc to Pages / deploy (push) Waiting to run
build(deps): update dependencies
This includes:
- mock_instant 0.5 -> 0.6
- rstest 0.24 -> 0.26
- rusqlite 0.34 -> 0.37
- schemars 0.8 -> 1.0
- serde-inline-default 0.2 -> 1.0
- tokio-tungstenite 0.26 -> 0.27

Only schemars update needs some minor code changes.
2025-09-10 21:10:49 -04:00

22 lines
601 B
TOML

[package]
name = "blahctl"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
ed25519-dalek = { version = "2", features = ["pkcs8", "pem", "rand_core"] }
humantime = "2"
rand08 = { package = "rand", version = "0.8" }
reqwest = { version = "0.12", features = ["json"] }
rusqlite = { version = "0.37", features = ["rusqlite-macros"] }
serde_jcs = "0.1.0"
serde_json = "1"
tokio = { version = "1", features = ["rt", "macros"] }
blah-types = { path = "../blah-types", features = ["rusqlite"] }
[lints.clippy]
dbg_macro = "warn"
todo = "warn"