Update Cargo.tomls to point to correct README location

This commit is contained in:
onyinyang 2023-11-22 14:41:22 -05:00
parent 88a865d04c
commit a27df0b6c6
No known key found for this signature in database
GPG Key ID: 156A6435430C2036
4 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ description = "Tool for receving Tor bridges from rdsys and distributing them to
keywords = ["tor", "lox", "bridges","censorship-resistance"]
categories = ["web-programming::http-server"]
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/lox-distributor"
readme = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/blob/main/crates/lox-distributor/README.md"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -26,7 +26,7 @@ rand = "0.8.5"
reqwest = { version = "0.11", features = ["json", "stream"]}
serde = { version = "1.0", features = ["derive", "rc"] }
serde_with = "3.4.0"
zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp" }
zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp", version = "0.8.0" }
lox-library = { path = "../lox-library", version = "0.1.0"}
lox_utils = { path = "../lox-utils", version = "0.1.0"}
rdsys_backend = { path = "../rdsys-backend-api", version = "0.2"}

View File

@ -10,7 +10,7 @@ description = "Main Lox library with protocols and functions that that make up L
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"
readme = "README.md"
[dependencies]
@ -31,7 +31,7 @@ time = "0.3.30"
prometheus = "0.13.3"
subtle = "2.5"
thiserror = "1.0.50"
zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp" }
zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp", version = "0.8.0" }
[features]
fast = []

View File

@ -9,7 +9,7 @@ homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
keywords = ["tor", "lox", "bridges","censorship-resistance"]
categories = ["wasm", "web-programming::http-client","external-ffi-bindings"]
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/lox-wasm"
readme = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/blob/main/crates/lox-wasm/README.md"
readme = "README.md"
[lib]
crate-type = ["cdylib"]
@ -27,7 +27,7 @@ serde_json = "1.0.108"
console_error_panic_hook = "0.1.7"
js-sys = "0.3.65"
rand = { version = "0.7", features = ["wasm-bindgen"] }
zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp" }
zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp", version = "0.8.0" }
[dependencies.chrono]
version = "0.4.31"

View File

@ -8,7 +8,7 @@ homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
keywords = ["tor", "lox", "bridges","censorship-resistance"]
categories = ["api-bindings", "encoding"]
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/rdsys-backend-api"
readme = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/blob/main/crates/rdsys-backend-api/README.md"
readme = "README.md"
[dependencies]