|
@@ -1,7 +1,14 @@
|
|
|
[package]
|
|
[package]
|
|
|
name = "lox-extensions"
|
|
name = "lox-extensions"
|
|
|
version = "0.1.0"
|
|
version = "0.1.0"
|
|
|
|
|
+authors = ["Ian Goldberg <iang@uwaterloo.ca>, Lindsey Tulloch <onyinyang@torproject.org>"]
|
|
|
edition = "2021"
|
|
edition = "2021"
|
|
|
|
|
+license = "MIT"
|
|
|
|
|
+respository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/creates/lox-extensions"
|
|
|
|
|
+description = "A reputation-based bridge distribution system that provides privacy protection to users and their social graph while remaining open to all users."
|
|
|
|
|
+keywords = ["tor", "anti-censorship", "bridges", "reputation", "anonymity"]
|
|
|
|
|
+categories = ["cryptography"]
|
|
|
|
|
+readme = "README.md"
|
|
|
|
|
|
|
|
[dependencies]
|
|
[dependencies]
|
|
|
aes-gcm = { version = "0.10", features = ["aes"] }
|
|
aes-gcm = { version = "0.10", features = ["aes"] }
|
|
@@ -15,13 +22,14 @@ serde_with = { version = "3.0.0", features = ["json"] }
|
|
|
sha1 = "0.10"
|
|
sha1 = "0.10"
|
|
|
sha2 = "0.10.9"
|
|
sha2 = "0.10.9"
|
|
|
subtle = "2.5"
|
|
subtle = "2.5"
|
|
|
-time = "0.3.36"
|
|
|
|
|
cmz = "0.1.0"
|
|
cmz = "0.1.0"
|
|
|
group = "0.13"
|
|
group = "0.13"
|
|
|
ff = "0.13.1"
|
|
ff = "0.13.1"
|
|
|
bincode = "1"
|
|
bincode = "1"
|
|
|
thiserror = "2.0.12"
|
|
thiserror = "2.0.12"
|
|
|
|
|
+time = "0.3.36"
|
|
|
serde_bytes = "0.11.17"
|
|
serde_bytes = "0.11.17"
|
|
|
|
|
|
|
|
[features]
|
|
[features]
|
|
|
bridgeauth = ["chrono"]
|
|
bridgeauth = ["chrono"]
|
|
|
|
|
+test = []
|