Update Cargo.toml for each crate for crates.io
This commit is contained in:
parent
e1b94ada3b
commit
ea37984da6
|
@ -4,9 +4,13 @@ version = "0.1.0"
|
|||
authors = ["The Tor Project, Inc.", "Lindsey Tulloch <onyinyang@torproject.org", "Cecylia Bocovich <cohosh@torproject.org>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.65.0"
|
||||
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox-project/~/wikis/home"
|
||||
description = "Tool for receving resources from rdsys and distributing them to users"
|
||||
keywords = ["tor", "lox", "bridges"]
|
||||
license = "MIT"
|
||||
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
|
||||
description = "Tool for receving Tor bridges from rdsys and distributing them to users"
|
||||
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"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
|
|
@ -1,12 +1,17 @@
|
|||
[package]
|
||||
name = "lox-library"
|
||||
version = "0.1.0"
|
||||
authors = ["Ian Goldberg <iang@uwaterloo.ca>"]
|
||||
authors = ["Ian Goldberg <iang@uwaterloo.ca>, Lindsey Tulloch <onyinyang@torporject.org"]
|
||||
edition = "2018"
|
||||
rust-version = "1.65.0"
|
||||
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox-project/~/wikis/home"
|
||||
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"]
|
||||
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"
|
||||
|
||||
|
||||
[dependencies]
|
||||
curve25519-dalek = { version = "4", default-features = false, features = ["serde", "rand_core", "digest"] }
|
||||
|
|
|
@ -1,10 +1,15 @@
|
|||
[package]
|
||||
name = "lox-wasm"
|
||||
authors = ["Cecylia Bocovich <cohosh@torproject.org>"]
|
||||
authors = ["Cecylia Bocovich <cohosh@torproject.org>, Lindsey Tulloch <onyinyang@torproject.org"]
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "WASM bindings for lox"
|
||||
license = "MIT"
|
||||
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"
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
|
|
@ -1,8 +1,14 @@
|
|||
[package]
|
||||
name = "rdsys_backend"
|
||||
authors = ["Cecylia Bocovich <cohosh@torproject.org>"]
|
||||
authors = ["Cecylia Bocovich <cohosh@torproject.org>, Lindsey Tulloch <onyinyang@torproject.org"]
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
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"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
|
Loading…
Reference in New Issue