diff options
author | Alex Auvolat <alex@adnab.me> | 2020-07-07 14:14:58 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-07-07 14:14:58 +0200 |
commit | cc65cdc0fe49f8efdf82a42493a71dbf1b116bb2 (patch) | |
tree | 1076123f194159e449895424ae385b93a83a366a | |
parent | bec26a13129d8215d5ff97ad0cf587f6572f67ac (diff) | |
download | garage-cc65cdc0fe49f8efdf82a42493a71dbf1b116bb2.tar.gz garage-cc65cdc0fe49f8efdf82a42493a71dbf1b116bb2.zip |
Add license, description and repository to .toml files
-rw-r--r-- | src/api/Cargo.toml | 3 | ||||
-rw-r--r-- | src/garage/Cargo.toml | 3 | ||||
-rw-r--r-- | src/model/Cargo.toml | 3 | ||||
-rw-r--r-- | src/rpc/Cargo.toml | 3 | ||||
-rw-r--r-- | src/table/Cargo.toml | 3 | ||||
-rw-r--r-- | src/util/Cargo.toml | 3 |
6 files changed, 18 insertions, 0 deletions
diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml index 99838a56..e5381111 100644 --- a/src/api/Cargo.toml +++ b/src/api/Cargo.toml @@ -3,6 +3,9 @@ name = "garage_api" version = "0.1.0" authors = ["Alex Auvolat <alex@adnab.me>"] edition = "2018" +license = "GPL-3.0" +description = "S3 API server crate for the Garage object store" +repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage" [lib] path = "lib.rs" diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml index 2daa0f75..1aab6274 100644 --- a/src/garage/Cargo.toml +++ b/src/garage/Cargo.toml @@ -3,6 +3,9 @@ name = "garage" version = "0.1.0" authors = ["Alex Auvolat <alex@adnab.me>"] edition = "2018" +license = "GPL-3.0" +description = "Garage, an S3-compatible distributed object store for self-hosted deployments" +repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage" [[bin]] name = "garage" diff --git a/src/model/Cargo.toml b/src/model/Cargo.toml index be3b1449..66ee76b5 100644 --- a/src/model/Cargo.toml +++ b/src/model/Cargo.toml @@ -3,6 +3,9 @@ name = "garage_model" version = "0.1.0" authors = ["Alex Auvolat <alex@adnab.me>"] edition = "2018" +license = "GPL-3.0" +description = "Core data model for the Garage object store" +repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage" [lib] path = "lib.rs" diff --git a/src/rpc/Cargo.toml b/src/rpc/Cargo.toml index b55e9e90..b00f5cb0 100644 --- a/src/rpc/Cargo.toml +++ b/src/rpc/Cargo.toml @@ -3,6 +3,9 @@ name = "garage_rpc" version = "0.1.0" authors = ["Alex Auvolat <alex@adnab.me>"] edition = "2018" +license = "GPL-3.0" +description = "Cluster membership management and RPC protocol for the Garage object store" +repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage" [lib] path = "lib.rs" diff --git a/src/table/Cargo.toml b/src/table/Cargo.toml index 714d0a6e..60323e43 100644 --- a/src/table/Cargo.toml +++ b/src/table/Cargo.toml @@ -3,6 +3,9 @@ name = "garage_table" version = "0.1.0" authors = ["Alex Auvolat <alex@adnab.me>"] edition = "2018" +license = "GPL-3.0" +description = "Table sharding and replication engine (DynamoDB-like) for the Garage object store" +repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage" [lib] path = "lib.rs" diff --git a/src/util/Cargo.toml b/src/util/Cargo.toml index d8c39c62..19d96214 100644 --- a/src/util/Cargo.toml +++ b/src/util/Cargo.toml @@ -3,6 +3,9 @@ name = "garage_util" version = "0.1.0" authors = ["Alex Auvolat <alex@adnab.me>"] edition = "2018" +license = "GPL-3.0" +description = "Utility crate for the Garage object store" +repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage" [lib] path = "lib.rs" |