# 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 = "2021" rust-version = "1.73" name = "ssh-protocol" version = "0.1.0-pre.0" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the SSH protocol as described in RFC4251/RFC4253 as well as OpenSSH-specific extensions (WIP) """ homepage = "https://github.com/RustCrypto/SSH/tree/master/ssh-protocol" readme = "README.md" keywords = [ "crypto", "certificate", "openssh", "ssh", "sshsig", ] categories = [ "authentication", "cryptography", "encoding", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/SSH" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "ssh_protocol" path = "src/lib.rs" [dependencies.cipher] version = "=0.3.0-pre.0" default-features = false package = "ssh-cipher" [dependencies.encoding] version = "=0.3.0-pre.0" default-features = false package = "ssh-encoding" [dependencies.key] version = "=0.7.0-pre.0" default-features = false package = "ssh-key" [features] alloc = [ "encoding/alloc", "key/alloc", ] default = ["std"] std = [ "alloc", "encoding/std", "key/std", ]