troll-patrol/Cargo.toml

35 lines
1.0 KiB
TOML
Raw Normal View History

2023-11-09 12:50:51 -05:00
[package]
name = "troll-patrol"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-11-28 13:18:08 -05:00
array-bytes = "6.2.0"
base64 = "0.21.7"
2023-11-28 13:18:08 -05:00
bincode = "1"
2024-02-07 18:36:40 -05:00
chrono = "0.4"
clap = { version = "4.4.14", features = ["derive"] }
2023-11-28 13:18:08 -05:00
curve25519-dalek = { version = "4", default-features = false, features = ["serde", "rand_core", "digest"] }
ed25519-dalek = { version = "2", features = ["serde", "rand_core"] }
futures = "0.3.30"
http = "1"
2024-02-07 18:36:40 -05:00
http-body-util = "0.1"
hyper = { version = "0.14.28", features = ["full"] }
2024-02-07 18:36:40 -05:00
hyper-rustls = "0.26.0"
hyper-util = { version = "0.1", features = ["full"] }
julianday = "1.2.0"
lazy_static = "1"
2024-01-17 18:53:40 -05:00
lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
rand = "0.8.5"
serde = "1.0.197"
serde_json = "1.0"
serde_with = {version = "3.7.0", features = ["json"]}
2023-11-28 13:18:08 -05:00
sha1 = "0.10"
sha3 = "0.10"
2024-02-07 18:36:40 -05:00
sled = "0.34.7"
2023-11-28 13:18:08 -05:00
time = "0.3.30"
2024-02-07 18:36:40 -05:00
tokio = { version = "1", features = ["full"] }
2024-03-25 20:41:34 -04:00
tokio-cron = "0.1.2"