123456789101112131415161718192021 |
- [package]
- name = "troll-patrol"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- array-bytes = "6.2.0"
- bincode = "1"
- curve25519-dalek = { version = "4", default-features = false, features = ["serde", "rand_core", "digest"] }
- ed25519-dalek = { version = "2", features = ["serde", "rand_core"] }
- lox-library = { git = "https://gitlab.torproject.org/tpo/anti-censorship/lox.git", version = "0.1.0" }
- serde = "1.0.192"
- serde_with = {version = "3.4.0", features = ["json"]}
- sha1 = "0.10"
- sha3 = "0.10"
- time = "0.3.30"
- # probably not needed once I can query an API
- rand = { version = "0.8", features = ["std_rng"]}
|