chore: remove deprecated crates
These crates have been merged into git-next-core, and tombstones published to crates.io.
This commit is contained in:
parent
3ae113212a
commit
5a595ec9ee
17 changed files with 0 additions and 100 deletions
|
@ -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-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
|
||||
clap = { version = "4.5", features = ["cargo", "derive"] }
|
||||
|
||||
|
|
|
@ -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"
|
|
@ -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).
|
|
@ -1 +0,0 @@
|
|||
// moved to crates/core/src/macros/
|
|
@ -14,7 +14,6 @@ categories = { workspace = true }
|
|||
[dependencies]
|
||||
git-next-core = { workspace = true }
|
||||
git-next-server = { workspace = true }
|
||||
git-next-git = { workspace = true }
|
||||
|
||||
# CLI parsing
|
||||
clap = { workspace = true }
|
||||
|
|
|
@ -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"
|
|
@ -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).
|
|
@ -1,2 +0,0 @@
|
|||
// moved to crates/core/src/config/
|
||||
// moved newtype to crates/core/src/macros/
|
|
@ -8,7 +8,6 @@ description = "Forgejo support for git-next, the trunk-based development manager
|
|||
|
||||
[dependencies]
|
||||
git-next-core = { workspace = true }
|
||||
git-next-git = { workspace = true }
|
||||
|
||||
# logging
|
||||
tracing = { workspace = true }
|
||||
|
|
|
@ -8,7 +8,6 @@ description = "GitHub support for git-next, the trunk-based development manager"
|
|||
|
||||
[dependencies]
|
||||
git-next-core = { workspace = true }
|
||||
git-next-git = { workspace = true }
|
||||
|
||||
# own version for UserAgent requests to github.com
|
||||
clap = { workspace = true }
|
||||
|
|
|
@ -13,7 +13,6 @@ github = ["git-next-forge-github"]
|
|||
|
||||
[dependencies]
|
||||
git-next-core = { workspace = true }
|
||||
git-next-git = { workspace = true }
|
||||
git-next-forge-forgejo = { workspace = true, optional = true }
|
||||
git-next-forge-github = { workspace = true, optional = true }
|
||||
|
||||
|
|
|
@ -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"
|
|
@ -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).
|
|
@ -1 +0,0 @@
|
|||
// moved to crates/core/src/git/
|
|
@ -13,7 +13,6 @@ github = []
|
|||
|
||||
[dependencies]
|
||||
git-next-core = { workspace = true }
|
||||
git-next-git = { workspace = true }
|
||||
git-next-forge = { workspace = true }
|
||||
|
||||
# logging
|
||||
|
|
|
@ -8,7 +8,6 @@ description = "Server actor for git-next, the trunk-based development manager"
|
|||
|
||||
[dependencies]
|
||||
git-next-core = { workspace = true }
|
||||
git-next-git = { workspace = true }
|
||||
git-next-forge = { workspace = true }
|
||||
git-next-repo-actor = { workspace = true }
|
||||
git-next-file-watcher-actor = { workspace = true }
|
||||
|
|
|
@ -8,7 +8,6 @@ description = "server for git-next, the trunk-based development manager"
|
|||
|
||||
[dependencies]
|
||||
git-next-core = { workspace = true }
|
||||
git-next-git = { workspace = true }
|
||||
git-next-file-watcher-actor = { workspace = true }
|
||||
git-next-server-actor = { workspace = true }
|
||||
|
||||
|
|
Loading…
Reference in a new issue