diff --git a/Cargo.toml b/Cargo.toml index a625f13..d2dc702 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 e98c511..13abd6e 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 3a97510..7e4612c 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 af274e1..e3ad3f7 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 bf9c2dd..bff9926 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 271c0a1..d4ab386 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 74cbfc4..52a35f8 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 51c03d7..a2e99a4 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 c63a6e1..5be4f4a 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 254603c..ee5b538 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 d1a33b5..ca7c2da 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 a588405..6501a04 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 8d1eb5d..0637f61 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 }