cc17f2066d
Signed-off-by: ForgeJo Action. See: https://git.kemitix.net/kemitix/rust <action@git.kemitix.net>
24 lines
702 B
TOML
24 lines
702 B
TOML
[package]
|
|
name = "kx-utils"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
authors = ["Paul Campbell <pcampbell@kemitix.net>"]
|
|
description = "Common utils incubator"
|
|
license = "MIT"
|
|
repository = "https://git.kemitix.net/kemitix/kx-utils"
|
|
|
|
[features]
|
|
default = []
|
|
use-kameo = ["kameo", "tracing", "tokio"]
|
|
use-kxio = ["kxio"]
|
|
|
|
[dependencies]
|
|
derive_more = { version = "1.0", features = ["as_ref", "constructor", "deref", "display", "from"] }
|
|
kxio = { version = "5.0", optional = true }
|
|
kameo = { version = "0.13", optional = true }
|
|
tracing = { version = "0.1", optional = true }
|
|
serde = { version = "1.0" , features = ["derive"]}
|
|
tokio = { version = "1.43", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|