2024-06-29 11:14:09 +01:00
|
|
|
[package]
|
|
|
|
name = "git-next-server-actor"
|
|
|
|
version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2024-07-14 10:40:34 +01:00
|
|
|
license = { workspace = true }
|
|
|
|
descripition = "Server actor for git-next, the trunk-based development manager"
|
2024-06-29 11:14:09 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
git-next-config = { workspace = true }
|
|
|
|
git-next-git = { workspace = true }
|
|
|
|
git-next-forge = { workspace = true }
|
|
|
|
git-next-repo-actor = { workspace = true }
|
|
|
|
git-next-actor-macros = { workspace = true }
|
|
|
|
git-next-file-watcher-actor = { workspace = true }
|
|
|
|
git-next-webhook-actor = { workspace = true }
|
|
|
|
|
|
|
|
# logging
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
|
|
|
# fs/network
|
|
|
|
kxio = { workspace = true }
|
|
|
|
|
|
|
|
# boilerplate
|
|
|
|
derive_more = { workspace = true }
|
2024-07-11 18:54:44 +01:00
|
|
|
derive-with = { workspace = true }
|
2024-06-29 11:14:09 +01:00
|
|
|
|
|
|
|
# Actors
|
|
|
|
actix = { workspace = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Testing
|
|
|
|
# assert2 = { workspace = true }
|
2024-07-11 18:54:44 +01:00
|
|
|
test-log = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
2024-06-29 11:14:09 +01:00
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
nursery = { level = "warn", priority = -1 }
|
|
|
|
# pedantic = "warn"
|
|
|
|
unwrap_used = "warn"
|
|
|
|
expect_used = "warn"
|