[dependencies.bytes]
optional = true
version = "1"
[dependencies.chrono]
optional = true
version = "0.4"
[dependencies.futures]
optional = true
version = "0.3"
[dependencies.once_cell]
optional = true
version = "1"
[dependencies.sha1_smol]
optional = true
version = "1"
[dependencies.tokio]
features = ["net", "rt", "io-util", "fs", "macros", "rt-multi-thread"]
optional = true
version = "1"
[dependencies.tokio-native-tls]
optional = true
version = "0.3"
[dependencies.tokio-util]
features = ["codec"]
optional = true
version = "0.7"
[dependencies.trust-dns-resolver]
optional = true
version = "0.22"
[dev-dependencies.async-std]
features = ["tokio1", "attributes"]
version = "1.8.0"
[dev-dependencies.float-cmp]
version = "0.8"
[features]
default = ["ipc"]
ipc = ["once_cell", "chrono", "trust-dns-resolver", "tokio", "tokio-native-tls", "tokio-util", "bytes", "sha1_smol", "futures"]
[lib]
name = "kdb_codec"
path = "src/lib.rs"
[package]
authors = ["yshing"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
Kdb+ IPC codec library for handling kdb+ wire protocol data with Rust.
"""
documentation = "https://docs.rs/kdb_codec"
edition = "2021"
license = "Apache-2.0"
name = "kdb_codec"
readme = "README.md"
repository = "https://github.com/yshing/kdb_codec"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
[[test]]
name = "test"
path = "tests/test.rs"