kx-utils/Cargo.toml
ForgeJo Action. See: https://git.kemitix.net/kemitix/rust cc17f2066d
All checks were successful
Test / build (map[name:stable]) (pull_request) Successful in 1m52s
Test / build (map[name:nightly]) (pull_request) Successful in 2m0s
chore: release v0.1.1
Signed-off-by: ForgeJo Action. See: https://git.kemitix.net/kemitix/rust <action@git.kemitix.net>
2025-01-16 10:07:17 +00:00

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"