[package]
edition = "2021"
name = "kdb-plus-fixed"
version = "0.4.1"
authors = [
"diamondrod",
"rollo-b2c2",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Dual q/kdb+ interface for API to build a shared library and an IPC client.
"""
documentation = "https://docs.rs/kdb-plus-fixed"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/wingfoil-io/kdb-plus-fixed"
[package.metadata.docs.rs]
all-features = true
[features]
api = []
default = []
integration-tests = ["ipc"]
ipc = [
"once_cell",
"chrono",
"trust-dns-resolver",
"tokio",
"tokio-native-tls",
"async-trait",
"sha1_smol",
]
[lib]
name = "kdb_plus_fixed"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.async-recursion]
version = "1"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.once_cell]
version = "1"
optional = true
[dependencies.sha1_smol]
version = "1"
optional = true
[dependencies.tokio]
version = "1"
features = [
"net",
"rt",
"io-util",
"fs",
"macros",
"rt-multi-thread",
]
optional = true
[dependencies.tokio-native-tls]
version = "0.3"
optional = true
[dependencies.trust-dns-resolver]
version = "0.22"
optional = true
[dev-dependencies.async-std]
version = "1.8.0"
features = [
"tokio1",
"attributes",
]
[dev-dependencies.float-cmp]
version = "0.8"
[dev-dependencies.libc]
version = "0.2"