lox/crates/lox-library/Cargo.toml

32 lines
734 B
TOML
Raw Normal View History

[package]
name = "lox"
version = "0.1.0"
authors = ["Ian Goldberg <iang@uwaterloo.ca>"]
edition = "2018"
[dependencies]
curve25519-dalek = { package = "curve25519-dalek-ng", version = "3", default-features = false, features = ["serde", "std"] }
ed25519-dalek = "1"
# zkp = { version = "0.8", features = ["debug-transcript"] }
zkp = "0.8"
bincode = "1"
2022-04-03 01:03:35 -04:00
chrono = "0.4"
rand = "0.7"
serde = "1"
serde_with = "1.9.1"
sha2 = "0.9"
statistical = "1.0.0"
lazy_static = "1"
hex_fmt = "0.3"
2021-04-27 13:00:18 -04:00
aes-gcm = "0.8"
2021-04-27 18:26:49 -04:00
base64 = "0.13"
2021-04-28 13:36:04 -04:00
time = "0.2"
subtle = "2.4"
[features]
default = ["u64_backend"]
u32_backend = ["curve25519-dalek/u32_backend"]
u64_backend = ["curve25519-dalek/u64_backend"]
simd_backend = ["curve25519-dalek/simd_backend"]
fast = []