mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-05-01 00:31:09 +00:00
20 lines
463 B
TOML
20 lines
463 B
TOML
[package]
|
|
name = "blahctl"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
ed25519-dalek = { version = "2", features = ["pkcs8", "pem", "rand_core"] }
|
|
hex = "0.4"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
rusqlite = "0.32"
|
|
tokio = { version = "1", features = ["rt", "macros"] }
|
|
|
|
blah = { path = "..", features = ["rusqlite"] }
|
|
|
|
[lints.clippy]
|
|
dbg_macro = "warn"
|
|
todo = "warn"
|