ssh-agent-client-rs 1.1.3

Pure rust implementation of the ssh-agent protocol. It can be used to write clients that interact with the ssh agent.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85.1"
name = "ssh-agent-client-rs"
version = "1.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Pure rust implementation of the ssh-agent protocol. It can be used to write clients that interact with the ssh agent.
"""
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nresare/ssh-agent-client-rs"

[lib]
name = "ssh_agent_client_rs"
path = "src/lib.rs"

[[example]]
name = "add"
path = "examples/add.rs"

[[example]]
name = "list"
path = "examples/list.rs"

[[example]]
name = "remove"
path = "examples/remove.rs"

[[example]]
name = "removeall"
path = "examples/removeall.rs"

[[example]]
name = "verify"
path = "examples/verify.rs"

[[test]]
name = "client"
path = "tests/client.rs"

[dependencies.bytes]
version = "1.11"

[dependencies.signature]
version = "2.2"

[dependencies.ssh-encoding]
version = "0.2"

[dependencies.ssh-key]
version = "0.6"
features = ["crypto"]

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.anyhow]
version = "1.0"

[dev-dependencies.rand]
version = "0.9"

[target."cfg(windows)".dependencies.interprocess]
version = "2.2"