lox/crates/lox-library/Cargo.toml

39 lines
1.3 KiB
TOML

[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", "bridges","anti-censorship", "anonymous-cred"]
categories = ["cryptography"]
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/lox-library"
readme = "README.md"
[dependencies]
curve25519-dalek = { version = "4.1.2", default-features = false, features = ["serde", "rand_core", "digest"] }
ed25519-dalek = { version = "2.1.1", features = ["serde", "rand_core"] }
bincode = "1.3.3"
chrono = "0.4.38"
rand = { version = "0.8", features = ["std_rng"]}
serde = "1.0.197"
serde_with = {version = "3.7.0", features = ["json"]}
sha1 = "0.10"
sha2 = "0.10"
statistical = "1.0.0"
lazy_static = "1.4.0"
hex_fmt = "0.3"
aes-gcm = { version = "0.10", features =["aes"]}
base64 = "0.22.0"
time = "0.3.36"
prometheus = "0.13.3"
subtle = "2.5"
thiserror = "1.0.59"
lox-zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp", version = "0.8.0" }
[features]
fast = []