[package]
edition = "2024"
name = "cspcl"
version = "0.5.0"
authors = ["cspcl contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings for the cspcl library"
readme = "README.md"
keywords = ["cspcl"]
license = "MIT"
repository = "https://github.com/d3tn/cspcl"
[features]
async-tokio = ["dep:tokio"]
default = []
[lib]
name = "cspcl"
path = "src/lib.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "async_api"
path = "tests/async_api.rs"
[dependencies.cspcl-sys]
version = "0.4.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
]
optional = true