-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "ssh-protocol"
version = "0.3.0-rc.1"
description = """
Pure Rust implementation of the SSH protocol as described in RFC4251/RFC4253 as well as
OpenSSH-specific extensions (WIP)
"""
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/RustCrypto/SSH/tree/master/ssh-protocol"
repository = "https://github.com/RustCrypto/SSH"
categories = ["authentication", "cryptography", "encoding", "no-std"]
keywords = ["crypto", "certificate", "openssh", "ssh", "sshsig"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
[dependencies]
cipher = { package = "ssh-cipher", version = "0.3.0-rc.6", default-features = false }
encoding = { package = "ssh-encoding", version = "0.3.0-rc.6", default-features = false }
key = { package = "ssh-key", version = "0.7.0-rc.7", default-features = false }
[features]
default = ["std"]
alloc = ["encoding/alloc", "key/alloc"]
std = ["alloc", "key/std"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]