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