ssh-encoding 0.2.0

Pure Rust implementation of SSH data type decoders/encoders as described in RFC4251
Documentation
[dependencies.base64]
optional = true
package = "base64ct"
version = "1.4"

[dependencies.bytes]
default-features = false
optional = true
version = "1"

[dependencies.pem]
optional = true
package = "pem-rfc7468"
version = "0.7"

[dependencies.sha2]
default-features = false
optional = true
version = "0.10"
[dev-dependencies.hex-literal]
version = "0.4.1"

[features]
alloc = ["base64?/alloc", "pem?/alloc"]
bytes = ["alloc", "dep:bytes"]
pem = ["base64", "dep:pem"]
std = ["alloc", "base64?/std", "pem?/std", "sha2?/std"]

[package]
authors = ["RustCrypto Developers"]
categories = ["authentication", "cryptography", "encoding", "no-std", "parser-implementations"]
description = "Pure Rust implementation of SSH data type decoders/encoders as described\nin RFC4251\n"
edition = "2021"
keywords = ["crypto", "certificate", "key", "openssh", "ssh"]
license = "Apache-2.0 OR MIT"
name = "ssh-encoding"
readme = "README.md"
repository = "https://github.com/RustCrypto/SSH/tree/master/ssh-encoding"
rust-version = "1.60"
version = "0.2.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]