[package]
edition = "2024"
name = "netconf-rust"
version = "0.5.0"
authors = ["Joshua Benz <voidsifr@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An async NETCONF client library implementing RFC 6241 (NETCONF), RFC 6242 (chunked framing), and RFC 4742 (EOM framing) with pipelining and zero-copy parsing"
homepage = "https://github.com/joshbenz/netconf-rust"
documentation = "https://docs.rs/netconf-rust"
readme = "README.md"
keywords = [
"ssh",
"network",
"automation",
"async",
"netconf",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshbenz/netconf-rust"
[lib]
name = "netconf_rust"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "disconnect_watcher"
path = "examples/disconnect_watcher.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[dependencies.bytes]
version = "1"
[dependencies.log]
version = "0.4"
[dependencies.memchr]
version = "2"
[dependencies.quick-xml]
version = "0.39"
[dependencies.russh]
version = "0.57"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"io-util",
"net",
"sync",
"time",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]