21 lines
675 B
TOML
21 lines
675 B
TOML
[package]
|
|
name = "powd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
clap = { version = "4.3.11", features = ["derive"] }
|
|
log = "0.4.19"
|
|
pow_sha256 = { git = "https://github.com/mCaptcha/pow_sha256"}
|
|
pretty_env_logger = "0.5.0"
|
|
rand = "0.8.5"
|
|
rayon = "1.7.0"
|
|
serde = { version = "1.0.169", features = ["derive"] }
|
|
serde_json = "1.0.100"
|
|
sled = "0.34.7"
|
|
sqlx = { version = "0.7", features = [ "runtime-tokio", "postgres" ] }
|
|
tokio = { version = "1.29.1", features = ["rt-multi-thread", "macros", "rt"] }
|
|
url = { version = "2.4.0", features = ["serde"] }
|