kx-utils/Cargo.toml
Paul Campbell 04f550d660
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 1m36s
Test / build (map[name:stable]) (push) Successful in 2m19s
Release Please / Release-plz (push) Successful in 39s
feat: define features and their dependencies
2025-01-10 18:26:46 +00:00

18 lines
454 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", "tokio"]
use-kxio = ["kxio"]
[dependencies]
kxio = { version = "5.0", optional = true }
kameo = { version = "0.13", optional = true }
tokio = { version = "1.43", optional = true }