ssh-packet 0.12.0

A library implementing SSH packet reading/writing using `binrw`.
Documentation
[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"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package.metadata.docs.rs]

# Whether to pass `--all-features` to Cargo (default: false)
all-features = true

# Enable unstable features in the documentation
rustdoc-args = ["--cfg", "docsrs"]

[features]
digest = ["signature/digest"]

[dependencies]
binrw = "0.15.0"
thiserror = "2.0.17"

# Optional dependencies
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"