troll-patrol/Cargo.toml

50 lines
1.4 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]
2024-04-16 01:11:47 -04:00
aes-gcm = "0.10"
anyhow = "1.0"
2023-11-28 13:18:08 -05:00
array-bytes = "6.2.0"
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"] }
2024-05-15 20:58:42 -04:00
faketime = { version = "0.2", optional = true }
futures = "0.3.30"
2024-04-16 01:11:47 -04:00
hkdf = "0.12"
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" }
2024-06-04 06:26:58 -04:00
memory-stats = { version = "1.0.0", optional = true }
nalgebra = "0.29"
2024-04-12 02:38:35 -04:00
rand = { version = "0.8" }
#select = "0.6.0"
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"
statrs = "0.16"
2024-04-27 13:18:15 -04:00
time = "0.3.36"
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"
2024-04-16 01:11:47 -04:00
x25519-dalek = { version = "2", features = ["serde", "static_secrets"] }
2024-03-29 16:17:38 -04:00
[dev-dependencies]
base64 = "0.21.7"
2024-05-15 20:58:42 -04:00
faketime = "0.2"
[features]
2024-06-18 07:27:13 -04:00
simulation = ["faketime", "memory-stats"]