[package]
edition = "2024"
rust-version = "1.85"
name = "lnc-client"
version = "0.2.7"
authors = ["LANCE Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LANCE client library - Rust client for the LANCE streaming platform"
homepage = "https://github.com/nitecon/lance"
documentation = "https://docs.rs/lnc-client"
readme = "README.md"
keywords = [
"streaming",
"messaging",
"kafka",
"client",
"async",
]
categories = [
"network-programming",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/nitecon/lance"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
dangerous-testing = []
default = []
[lib]
name = "lnc_client"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.bytes]
version = "1.5"
[dependencies.lnc-core]
version = "0.2.7"
[dependencies.lnc-network]
version = "0.2.7"
features = ["tls"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dependencies.tokio-rustls]
version = "0.26"
features = ["ring"]
default-features = false
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3.14"
[dev-dependencies.tokio]
version = "1.35"
features = [
"full",
"full",
"test-util",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_IO",
]