diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml index 99838a565..e5381111e 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 2daa0f755..1aab6274b 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 be3b14493..66ee76b52 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 b55e9e905..b00f5cb05 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 714d0a6e4..60323e43b 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 d8c39c624..19d96214e 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"