31 lines
668 B
TOML
31 lines
668 B
TOML
|
[package]
|
||
|
name = "git-next-core"
|
||
|
version = { workspace = true }
|
||
|
edition = { workspace = true }
|
||
|
license = { workspace = true }
|
||
|
repository = { workspace = true }
|
||
|
description = "core for git-next, the trunk-based development manager"
|
||
|
|
||
|
[dependencies]
|
||
|
# 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"
|