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 "] 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 "] 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 "] 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 "] 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 "] 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 "] 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"