git-next/crates/server/Cargo.toml

32 lines
670 B
TOML
Raw Normal View History

2024-05-11 18:57:18 +01:00
[package]
name = "git-next-server"
version = { workspace = true }
edition = { workspace = true }
[dependencies]
git-next-config = { workspace = true }
git-next-file-watcher-actor = { workspace = true }
2024-06-29 11:14:09 +01:00
git-next-server-actor = { workspace = true }
2024-05-11 18:57:18 +01:00
# logging
console-subscriber = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# fs/network
kxio = { workspace = true }
2024-06-29 11:14:09 +01:00
# Actors
2024-05-11 18:57:18 +01:00
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"