21 lines
515 B
TOML
21 lines
515 B
TOML
# file: crates/ksp-logging-lib/Cargo.toml
|
|
# version: 5
|
|
|
|
[package]
|
|
name = "ksp-logging-lib"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
ksp-core-lib = { path = "../ksp-core-lib" }
|
|
tracing = { workspace = true, features = ["std"] }
|
|
tracing-subscriber = { workspace = true, features = ["fmt", "json", "ansi"] }
|
|
tracing-appender.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] }
|
|
|
|
[lints]
|
|
workspace = true
|