blahrs/blahctl/Cargo.toml
oxalica 40e4a53886
Some checks failed
CI / Code style (push) Has been cancelled
CI / Test beta (push) Has been cancelled
CI / Test stable (push) Has been cancelled
CI / Flake package (push) Has been cancelled
Deploy OpenAPI doc to Pages / deploy (push) Has been cancelled
build(deps): update to rand 0.9 is possible
Except for code using ed25519-dalek, since we are blocked by them.

Also tweak RNG source so only key generation uses `OsRng`. PoW nonce
generation only need unpredictability thus `ThreadRng` suffices.

See: https://github.com/dalek-cryptography/curve25519-dalek/issues/731
2025-04-15 20:28:09 -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.34", 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"