[package]
edition = "2024"
name = "ssh-packet"
version = "0.12.0"
authors = ["Maya the bee <15341887+lowlevl@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library implementing SSH packet reading/writing using `binrw`."
documentation = "https://docs.rs/ssh-packet"
readme = "README.md"
keywords = [
"ssh",
"binary",
]
license = "GPL-3.0"
repository = "https://github.com/lowlevl/ssh-packet"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
digest = ["signature/digest"]
[lib]
name = "ssh_packet"
path = "src/lib.rs"
[dependencies.binrw]
version = "0.15.0"
[dependencies.futures]
version = "0.3.31"
features = ["std"]
optional = true
default-features = false
[dependencies.signature]
version = "3.0.0"
optional = true
default-features = false
[dependencies.thiserror]
version = "2.0.17"
[dependencies.zeroize]
version = "1.8.2"
features = ["derive"]
optional = true
[dev-dependencies.async-std]
version = "1.13.2"
features = ["attributes"]
[dev-dependencies.rstest]
version = "0.26.1"