2022-10-27 22:44:54 -04:00
|
|
|
[package]
|
2024-04-26 23:12:10 -04:00
|
|
|
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]
|
2023-03-05 19:38:04 -05:00
|
|
|
#lox = { git = "https://git-crysp.uwaterloo.ca/iang/lox.git", branch = "vvecna/lox_test" }
|
2024-04-26 23:12:10 -04:00
|
|
|
#lox-library = { git = "https://gitlab.torproject.org/tpo/anti-censorship/lox.git", version = "0.1.0" }
|
|
|
|
lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
|
|
|
|
lox_utils = { git = "https://gitlab.torproject.org/tpo/anti-censorship/lox.git", version = "0.1.0" }
|
2023-03-25 14:36:04 -04:00
|
|
|
curve25519-dalek = { package = "curve25519-dalek-ng", version = "3", default-features = false, features = ["serde", "std"] }
|
2022-11-18 10:52:33 -05:00
|
|
|
ed25519-dalek = { version = "1", features = ["serde"] }
|
2023-03-25 14:36:04 -04:00
|
|
|
getopts = "0.2"
|
2022-11-14 14:30:38 -05:00
|
|
|
serde = "1"
|
2023-02-05 21:26:13 -05:00
|
|
|
bincode = "1"
|
2022-11-14 14:30:38 -05:00
|
|
|
serde_json = "1.0"
|
2023-03-05 19:38:04 -05:00
|
|
|
serde_with = "1.9.1"
|
|
|
|
time = "0.2"
|
2023-01-14 13:57:38 -05:00
|
|
|
# TODO: reduce feature set to just the ones needed
|
2023-11-07 15:03:54 -05:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2024-04-26 23:12:10 -04:00
|
|
|
hyper = { version = "0.14.28", features = ["full"] }
|
2023-06-20 12:47:49 -04:00
|
|
|
async-trait = "0.1.68"
|
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"]
|