kx-utils/Cargo.toml
Renovate Bot baec846f70
All checks were successful
Test / build (map[name:nightly]) (pull_request) Successful in 3m36s
Test / build (map[name:stable]) (pull_request) Successful in 3m39s
Release Please / Release-plz (push) Successful in 12s
Test / build (map[name:nightly]) (push) Successful in 2m19s
Test / build (map[name:stable]) (push) Successful in 2m39s
fix(deps): update rust crate kameo to 0.14
2025-01-16 17:43:06 +00:00

24 lines
702 B
TOML

[package]
name = "kx-utils"
version = "0.1.0"
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.14", 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"