lox/crates/lox-library/Cargo.toml

38 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "lox-library"
version = "0.1.0"
authors = ["Ian Goldberg <iang@uwaterloo.ca>, Lindsey Tulloch <onyinyang@torporject.org"]
edition = "2018"
rust-version = "1.65.0"
license = "MIT"
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
description = "Main Lox library with protocols and functions that that make up Lox"
keywords = ["tor", "lox", "bridge-distribution","censorship-resistance"]
categories = ["cryptography"]
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/lox-library"
readme = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/blob/main/crates/lox-library/README.md"
[dependencies]
curve25519-dalek = { version = "4", default-features = false, features = ["serde", "rand_core", "digest"] }
ed25519-dalek = { version = "2", features = ["serde", "rand_core"] }
bincode = "1"
2022-04-03 01:03:35 -04:00
chrono = "0.4"
rand = { version = "0.8", features = ["std_rng"]}
2023-11-08 22:35:30 -05:00
serde = "1.0.192"
2023-10-17 13:35:10 -04:00
serde_with = {version = "3.4.0", features = ["json"]}
sha2 = "0.10"
statistical = "1.0.0"
lazy_static = "1"
hex_fmt = "0.3"
aes-gcm = { version = "0.10", features =["aes"]}
2023-09-11 13:34:39 -04:00
base64 = "0.21"
2023-10-19 11:35:04 -04:00
time = "0.3.30"
prometheus = "0.13.3"
2023-09-11 13:35:00 -04:00
subtle = "2.5"
2023-09-26 21:34:27 -04:00
thiserror = "1.0.49"
2023-10-23 13:39:50 -04:00
zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp" }
[features]
fast = []