diff --git a/niwl-client/Cargo.toml b/niwl-client/Cargo.toml index 2661cbe..c85752e 100644 --- a/niwl-client/Cargo.toml +++ b/niwl-client/Cargo.toml @@ -1,5 +1,8 @@ [package] name = "niwl-client" +description = "client implementation for a prototype system for open, decentralized, metadata resistant communication using fuzzytags and random ejection mixers" +license = "MIT" +repository = "https://git.openprivacy.ca/openprivacy/niwl" version = "0.1.0" authors = ["Sarah Jamie Lewis "] edition = "2018" @@ -7,7 +10,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -niwl = {path="../niwl"} +niwl = {version="0.1.0", path="../niwl"} fuzzytags = "0.4.2" clap = "3.0.0-beta.2" serde = {version="1.0.123", features=["derive"]} diff --git a/niwl-rem/Cargo.toml b/niwl-rem/Cargo.toml index 94f7b64..2b6e386 100644 --- a/niwl-rem/Cargo.toml +++ b/niwl-rem/Cargo.toml @@ -1,12 +1,15 @@ [package] name = "niwl-rem" +description = "random ejection mixer implementation for a prototype system for open, decentralized, metadata resistant communication using fuzzytags and random ejection mixers" +license = "MIT" +repository = "https://git.openprivacy.ca/openprivacy/niwl" version = "0.1.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -niwl = {path="../niwl"} +niwl = {version="0.1.0", path="../niwl"} fuzzytags = "0.4.2" clap = "3.0.0-beta.2" serde = {version="1.0.123", features=["derive"]} diff --git a/niwl-server/Cargo.toml b/niwl-server/Cargo.toml index 0a3e93f..70dd468 100644 --- a/niwl-server/Cargo.toml +++ b/niwl-server/Cargo.toml @@ -1,5 +1,8 @@ [package] name = "niwl-server" +description = "server implementation for a prototype system for open, decentralized, metadata resistant communication using fuzzytags and random ejection mixers" +license = "MIT" +repository = "https://git.openprivacy.ca/openprivacy/niwl" version = "0.1.0" authors = ["Sarah Jamie Lewis "] edition = "2018" @@ -7,7 +10,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -niwl = {path="../niwl"} +niwl = {version="0.1.0", path="../niwl"} fuzzytags = "0.4.2" rocket = "0.4.6" rocket_contrib = {version="0.4.6", features=["sqlite_pool"]} diff --git a/niwl/Cargo.toml b/niwl/Cargo.toml index 295d1b7..68b88fd 100644 --- a/niwl/Cargo.toml +++ b/niwl/Cargo.toml @@ -1,5 +1,8 @@ [package] name = "niwl" +description = "core library for a prototype system for open, decentralized, metadata resistant communication using fuzzytags and random ejection mixers" +license = "MIT" +repository = "https://git.openprivacy.ca/openprivacy/niwl" version = "0.1.0" authors = ["Sarah Jamie Lewis "] edition = "2018"