Compare commits
2 commits
dd0a1ca41f
...
0656784d41
Author | SHA1 | Date | |
---|---|---|---|
0656784d41 | |||
5dc0de8a05 |
19 changed files with 130 additions and 0 deletions
|
@ -18,6 +18,7 @@ github = ["git-next-forge-github"]
|
|||
|
||||
[dependencies]
|
||||
git-next-core = { workspace = true }
|
||||
git-next-server-actor = { workspace = true }
|
||||
git-next-forge-forgejo = { workspace = true, optional = true }
|
||||
git-next-forge-github = { workspace = true, optional = true }
|
||||
|
||||
|
|
7
crates/file-watcher-actor/Cargo.toml
Normal file
7
crates/file-watcher-actor/Cargo.toml
Normal file
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "git-next-file-watcher-actor"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
description = "[deprecated crate] Config file watcher for git-next, the trunk-based development manager"
|
11
crates/file-watcher-actor/README.md
Normal file
11
crates/file-watcher-actor/README.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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](https://crates.io/git-next).
|
1
crates/file-watcher-actor/src/lib.rs
Normal file
1
crates/file-watcher-actor/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
// moved to /crates/cli/src/file_watcher
|
7
crates/forge/Cargo.toml
Normal file
7
crates/forge/Cargo.toml
Normal file
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "git-next-forge"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
description = "[deprecated crate] Generic forge support for git-next, the trunk-based development manager"
|
11
crates/forge/README.md
Normal file
11
crates/forge/README.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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](https://crates.io/git-next).
|
1
crates/forge/src/lib.rs
Normal file
1
crates/forge/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
// moved to /crates/cli/src/forge
|
7
crates/repo-actor/Cargo.toml
Normal file
7
crates/repo-actor/Cargo.toml
Normal file
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "git-next-repo-actor"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
description = "[deprecated crate] Repository support for git-next, the trunk-based development manager"
|
11
crates/repo-actor/README.md
Normal file
11
crates/repo-actor/README.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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](https://crates.io/git-next).
|
1
crates/repo-actor/src/lib.rs
Normal file
1
crates/repo-actor/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
// moved to /crates/cli/src/repo
|
22
crates/server-actor/Cargo.toml
Normal file
22
crates/server-actor/Cargo.toml
Normal file
|
@ -0,0 +1,22 @@
|
|||
[package]
|
||||
name = "git-next-server-actor"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
description = "Server actor for git-next, the trunk-based development manager"
|
||||
|
||||
[dependencies]
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
# Testing
|
||||
# assert2 = { workspace = true }
|
||||
test-log = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
|
||||
[lints.clippy]
|
||||
nursery = { level = "warn", priority = -1 }
|
||||
# pedantic = "warn"
|
||||
unwrap_used = "warn"
|
||||
expect_used = "warn"
|
11
crates/server-actor/README.md
Normal file
11
crates/server-actor/README.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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](https://crates.io/git-next).
|
1
crates/server-actor/src/lib.rs
Normal file
1
crates/server-actor/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
// moved to /crates/cli/src/server/actor
|
7
crates/server/Cargo.toml
Normal file
7
crates/server/Cargo.toml
Normal file
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "git-next-server"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
description = "[deprecated crate] server for git-next, the trunk-based development manager"
|
11
crates/server/README.md
Normal file
11
crates/server/README.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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](https://crates.io/git-next).
|
1
crates/server/src/lib.rs
Normal file
1
crates/server/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
// moved to /crates/cli/src/server
|
7
crates/webhook-actor/Cargo.toml
Normal file
7
crates/webhook-actor/Cargo.toml
Normal file
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "git-next-webhook-actor"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
description = "[deprecated crate] webhook actor for git-next, the trunk-based development manager"
|
11
crates/webhook-actor/README.md
Normal file
11
crates/webhook-actor/README.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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](https://crates.io/git-next).
|
1
crates/webhook-actor/src/lib.rs
Normal file
1
crates/webhook-actor/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
|||
// moved to /crates/cli/src/webhook
|
Loading…
Reference in a new issue