diff --git a/Cargo.toml b/Cargo.toml index a625f13a..d2dc702e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ members = ["crates/*"] [workspace.package] version = "0.9.0" edition = "2021" +license = "MIT" [workspace.lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/actor-macros/Cargo.toml b/crates/actor-macros/Cargo.toml index e98c5114..13abd6e2 100644 --- a/crates/actor-macros/Cargo.toml +++ b/crates/actor-macros/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-actor-macros" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "macros for actors for git-next, the trunk-based development manager" [dependencies] # Actors diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 3a975100..7e4612c9 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "CLI support for git-next, the trunk-based development manager" [dependencies] git-next-server = { workspace = true } diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index af274e1e..e3ad3f75 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-config" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "Base types for git-next, the trunk-based development manager" [features] default = ["forgejo", "github"] diff --git a/crates/file-watcher-actor/Cargo.toml b/crates/file-watcher-actor/Cargo.toml index bf9c2dd8..bff9926b 100644 --- a/crates/file-watcher-actor/Cargo.toml +++ b/crates/file-watcher-actor/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-file-watcher-actor" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "Config file watcher for git-next, the trunk-based development manager" [dependencies] git-next-config = { workspace = true } diff --git a/crates/forge-forgejo/Cargo.toml b/crates/forge-forgejo/Cargo.toml index 271c0a14..d4ab3863 100644 --- a/crates/forge-forgejo/Cargo.toml +++ b/crates/forge-forgejo/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-forge-forgejo" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "Forgejo support for git-next, the trunk-based development manager" [dependencies] git-next-config = { workspace = true } diff --git a/crates/forge-github/Cargo.toml b/crates/forge-github/Cargo.toml index 74cbfc47..52a35f88 100644 --- a/crates/forge-github/Cargo.toml +++ b/crates/forge-github/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-forge-github" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "GitHub support for git-next, the trunk-based development manager" [dependencies] git-next-config = { workspace = true } diff --git a/crates/forge/Cargo.toml b/crates/forge/Cargo.toml index 51c03d7a..a2e99a45 100644 --- a/crates/forge/Cargo.toml +++ b/crates/forge/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-forge" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "Generic forge support for git-next, the trunk-based development manager" [features] default = ["forgejo", "github"] diff --git a/crates/git/Cargo.toml b/crates/git/Cargo.toml index c63a6e13..5be4f4ad 100644 --- a/crates/git/Cargo.toml +++ b/crates/git/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-git" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "git support for git-next, the trunk-based development manager" [dependencies] git-next-config = { workspace = true } diff --git a/crates/repo-actor/Cargo.toml b/crates/repo-actor/Cargo.toml index 254603ca..ee5b5387 100644 --- a/crates/repo-actor/Cargo.toml +++ b/crates/repo-actor/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-repo-actor" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "Repository support for git-next, the trunk-based development manager" [features] default = ["forgejo", "github"] diff --git a/crates/server-actor/Cargo.toml b/crates/server-actor/Cargo.toml index d1a33b5b..ca7c2da3 100644 --- a/crates/server-actor/Cargo.toml +++ b/crates/server-actor/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-server-actor" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "Server actor for git-next, the trunk-based development manager" [dependencies] git-next-config = { workspace = true } diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index a588405c..6501a045 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-server" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "server for git-next, the trunk-based development manager" [dependencies] git-next-config = { workspace = true } diff --git a/crates/webhook-actor/Cargo.toml b/crates/webhook-actor/Cargo.toml index 8d1eb5d9..0637f612 100644 --- a/crates/webhook-actor/Cargo.toml +++ b/crates/webhook-actor/Cargo.toml @@ -2,6 +2,8 @@ name = "git-next-webhook-actor" version = { workspace = true } edition = { workspace = true } +license = { workspace = true } +descripition = "webhook actor for git-next, the trunk-based development manager" [dependencies] git-next-config = { workspace = true }