forked from kemitix/git-next
fix: add missing version for workspace dependencies
This commit is contained in:
parent
d24bcd9ab1
commit
fa7f78c734
1 changed files with 11 additions and 11 deletions
22
Cargo.toml
22
Cargo.toml
|
@ -15,17 +15,17 @@ unwrap_used = "warn"
|
|||
expect_used = "warn"
|
||||
|
||||
[workspace.dependencies]
|
||||
git-next-server = { path = "crates/server" }
|
||||
git-next-server-actor = { path = "crates/server-actor" }
|
||||
git-next-config = { path = "crates/config" }
|
||||
git-next-git = { path = "crates/git" }
|
||||
git-next-forge = { path = "crates/forge" }
|
||||
git-next-forge-forgejo = { path = "crates/forge-forgejo" }
|
||||
git-next-forge-github = { path = "crates/forge-github" }
|
||||
git-next-repo-actor = { path = "crates/repo-actor" }
|
||||
git-next-webhook-actor = { path = "crates/webhook-actor" }
|
||||
git-next-file-watcher-actor = { path = "crates/file-watcher-actor" }
|
||||
git-next-actor-macros = { path = "crates/actor-macros" }
|
||||
git-next-server = { path = "crates/server", version = "0.9" }
|
||||
git-next-server-actor = { path = "crates/server-actor", version = "0.9" }
|
||||
git-next-config = { path = "crates/config", version = "0.9" }
|
||||
git-next-git = { path = "crates/git", version = "0.9" }
|
||||
git-next-forge = { path = "crates/forge", version = "0.9" }
|
||||
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.9" }
|
||||
git-next-forge-github = { path = "crates/forge-github", version = "0.9" }
|
||||
git-next-repo-actor = { path = "crates/repo-actor", version = "0.9" }
|
||||
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.9" }
|
||||
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.9" }
|
||||
git-next-actor-macros = { path = "crates/actor-macros", version = "0.9" }
|
||||
|
||||
# CLI parsing
|
||||
clap = { version = "4.5", features = ["cargo", "derive"] }
|
||||
|
|
Loading…
Reference in a new issue