-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
60 lines (56 loc) · 1.95 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "ssh-agent-lib"
description = "A collection of types for writing custom SSH agents"
version = "0.5.1"
license = "MIT OR Apache-2.0"
authors = [
"Wiktor Kwapisiewicz <[email protected]>",
"Arthur Gautier <[email protected]>",
"James Spencer <[email protected]>"
]
repository = "https://github.com/wiktor-k/ssh-agent-lib"
edition = "2021"
rust-version = "1.75"
keywords = ["ssh", "agent", "authentication", "openssh", "async"]
categories = ["authentication", "cryptography", "encoding", "network-programming", "parsing"]
exclude = [".github"]
[workspace]
members = [".", "fuzz"]
[dependencies]
byteorder = "1"
async-trait = { version = "0.1", optional = true }
futures = { version = "0.3", optional = true }
log = { version = "0.4", optional = true }
tokio = { version = "1", optional = true, features = ["rt", "net", "time"] }
tokio-util = { version = "0.7", optional = true, features = ["codec"] }
service-binding = { version = "^3", optional = true }
ssh-encoding = { version = "0.2" }
ssh-key = { version = "0.6", features = ["crypto", "alloc"] }
thiserror = "1"
subtle = { version = "2", default-features = false }
signature = { version = "2", features = ["alloc"] }
secrecy = "0.8"
[features]
default = ["agent"]
codec = ["tokio-util"]
agent = ["futures", "log", "tokio", "async-trait", "codec", "service-binding"]
[dev-dependencies]
env_logger = "0.11.5"
rand = "0.8.5"
rsa = { version = "0.9.6", features = ["sha2", "sha1"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync"] }
sha1 = { version = "0.10.6", default-features = false, features = ["oid"] }
testresult = "0.4.1"
hex-literal = "0.4.1"
ssh-key = { version = "0.6.6", features = ["p256", "rsa"] }
p256 = { version = "0.13.2" }
const-str = "0.5.7"
rstest = "0.22.0"
openpgp-card = "0.5.0"
card-backend-pcsc = "0.5.0"
clap = { version = "4.5.17", features = ["derive"] }
secrecy = "0.8.0"
retainer = "0.3.0"
pgp = "0.13.2"
chrono = "0.4.38"
interprocess = "2.2.1"