forked from kemitix/git-next
34 lines
808 B
TOML
34 lines
808 B
TOML
[package]
|
|
name = "git-next-server"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = "server for git-next, the trunk-based development manager"
|
|
|
|
[dependencies]
|
|
git-next-config = { workspace = true }
|
|
git-next-file-watcher-actor = { workspace = true }
|
|
git-next-server-actor = { workspace = true }
|
|
|
|
# logging
|
|
console-subscriber = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# fs/network
|
|
kxio = { workspace = true }
|
|
|
|
# Actors
|
|
actix = { workspace = true }
|
|
actix-rt = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Testing
|
|
assert2 = { workspace = true }
|
|
|
|
[lints.clippy]
|
|
nursery = { level = "warn", priority = -1 }
|
|
# pedantic = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|