lox_cli/Cargo.toml

34 lines
1.0 KiB
TOML
Raw Normal View History

2022-10-27 22:44:54 -04:00
[package]
name = "lox_cli"
2022-10-27 22:44:54 -04:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
lox_utils = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
curve25519-dalek = { package = "curve25519-dalek-ng", version = "3", default-features = false, features = ["serde", "std"] }
ed25519-dalek = { version = "1", features = ["serde"] }
getopts = "0.2"
serde = "1"
bincode = "1"
serde_json = "1.0"
serde_with = "1.9.1"
time = "0.2"
# TODO: reduce feature set to just the ones needed
2023-11-07 15:03:54 -05:00
tokio = { version = "1", features = ["full"] }
hyper = { version = "0.14.28", features = ["full"] }
async-trait = "0.1.68"
2024-06-08 14:49:07 -04:00
anyhow = "1.0"
2023-11-07 15:03:54 -05:00
[features]
default = ["u64_backend"]
u32_backend = ["curve25519-dalek/u32_backend"]
u64_backend = ["curve25519-dalek/u64_backend"]
simd_backend = ["curve25519-dalek/simd_backend"]
[dev-dependencies]
array-bytes = "6.2.0"
sha1 = "0.10"