chore: remove deprecated crates
All checks were successful
Rust / build (push) Successful in 2m29s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful

These crates have been merged into git-next-core, and tombstones
published to crates.io.
This commit is contained in:
Paul Campbell 2024-07-27 08:00:06 +01:00
parent 3ae113212a
commit 5a595ec9ee
17 changed files with 0 additions and 100 deletions

View file

@ -33,12 +33,6 @@ git-next-repo-actor = { path = "crates/repo-actor", version = "0.11" }
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.11" } git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.11" }
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.11" } git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.11" }
# remove after 0.11.0
git-next-config = { path = "crates/config", version = "0.11" }
git-next-git = { path = "crates/git", version = "0.11" }
git-next-actor-macros = { path = "crates/actor-macros", version = "0.11" }
# CLI parsing # CLI parsing
clap = { version = "4.5", features = ["cargo", "derive"] } clap = { version = "4.5", features = ["cargo", "derive"] }

View file

@ -1,15 +0,0 @@
[package]
name = "git-next-actor-macros"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "[deprecated crate] macros for actors for git-next, the trunk-based development manager"
[dependencies]
[lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"

View file

@ -1,11 +0,0 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next-core](https://crates.io/crates/git-next-core).

View file

@ -1 +0,0 @@
// moved to crates/core/src/macros/

View file

@ -14,7 +14,6 @@ categories = { workspace = true }
[dependencies] [dependencies]
git-next-core = { workspace = true } git-next-core = { workspace = true }
git-next-server = { workspace = true } git-next-server = { workspace = true }
git-next-git = { workspace = true }
# CLI parsing # CLI parsing
clap = { workspace = true } clap = { workspace = true }

View file

@ -1,20 +0,0 @@
[package]
name = "git-next-config"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "[deprecated crate] Base types for git-next, the trunk-based development manager"
[features]
default = ["forgejo", "github"]
forgejo = []
github = []
[dependencies]
[lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"

View file

@ -1,11 +0,0 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next-core](https://crates.io/crates/git-next-core).

View file

@ -1,2 +0,0 @@
// moved to crates/core/src/config/
// moved newtype to crates/core/src/macros/

View file

@ -8,7 +8,6 @@ description = "Forgejo support for git-next, the trunk-based development manager
[dependencies] [dependencies]
git-next-core = { workspace = true } git-next-core = { workspace = true }
git-next-git = { workspace = true }
# logging # logging
tracing = { workspace = true } tracing = { workspace = true }

View file

@ -8,7 +8,6 @@ description = "GitHub support for git-next, the trunk-based development manager"
[dependencies] [dependencies]
git-next-core = { workspace = true } git-next-core = { workspace = true }
git-next-git = { workspace = true }
# own version for UserAgent requests to github.com # own version for UserAgent requests to github.com
clap = { workspace = true } clap = { workspace = true }

View file

@ -13,7 +13,6 @@ github = ["git-next-forge-github"]
[dependencies] [dependencies]
git-next-core = { workspace = true } git-next-core = { workspace = true }
git-next-git = { workspace = true }
git-next-forge-forgejo = { workspace = true, optional = true } git-next-forge-forgejo = { workspace = true, optional = true }
git-next-forge-github = { workspace = true, optional = true } git-next-forge-github = { workspace = true, optional = true }

View file

@ -1,15 +0,0 @@
[package]
name = "git-next-git"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "[deprecated crate] git support for git-next, the trunk-based development manager"
[dependencies]
[lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"

View file

@ -1,11 +0,0 @@
# git-next
## Trunk-based developement manager.
`git-next` is a combined server and command-line tool that enables trunk-based
development workflows where each commit must pass CI before being included in
the main branch.
See [git-next](https://crates.io/crates/git-next) for more information.
N.B. this crate has been merged into [git-next-core](https://crates.io/crates/git-next-core).

View file

@ -1 +0,0 @@
// moved to crates/core/src/git/

View file

@ -13,7 +13,6 @@ github = []
[dependencies] [dependencies]
git-next-core = { workspace = true } git-next-core = { workspace = true }
git-next-git = { workspace = true }
git-next-forge = { workspace = true } git-next-forge = { workspace = true }
# logging # logging

View file

@ -8,7 +8,6 @@ description = "Server actor for git-next, the trunk-based development manager"
[dependencies] [dependencies]
git-next-core = { workspace = true } git-next-core = { workspace = true }
git-next-git = { workspace = true }
git-next-forge = { workspace = true } git-next-forge = { workspace = true }
git-next-repo-actor = { workspace = true } git-next-repo-actor = { workspace = true }
git-next-file-watcher-actor = { workspace = true } git-next-file-watcher-actor = { workspace = true }

View file

@ -8,7 +8,6 @@ description = "server for git-next, the trunk-based development manager"
[dependencies] [dependencies]
git-next-core = { workspace = true } git-next-core = { workspace = true }
git-next-git = { workspace = true }
git-next-file-watcher-actor = { workspace = true } git-next-file-watcher-actor = { workspace = true }
git-next-server-actor = { workspace = true } git-next-server-actor = { workspace = true }