-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (54 loc) · 1.13 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
61
62
63
64
[package]
name = "ssh-gpg-agent"
version = "0.1.5"
authors = ["Daniel Mueller <[email protected]>"]
edition = "2021"
rust-version = "1.71"
license = "GPL-3.0-or-later"
homepage = "https://github.com/d-e-s-o/ssh-gpg-agent"
repository = "https://github.com/d-e-s-o/ssh-gpg-agent.git"
readme = "README.md"
categories = [
"command-line-utilities",
"authentication",
"config",
"cryptography",
"network-programming",
]
keywords = [
"ssh-agent",
"ssh",
"gpg",
"authentication",
"ed25519",
]
description = """
An SSH agent implementation that transparently supports PGP encrypted private SSH keys.
"""
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
incremental = false
[dependencies.anyhow]
version = "1.0.14"
[dependencies.dirs]
version = "5.0"
[dependencies.env_logger]
version = "0.11"
default-features = false
[dependencies.gpgme]
version = "0.11"
[dependencies.openssl]
version = "0.10.39"
[dependencies.log]
version = "0.4.8"
[dependencies.ssh-agent-lib]
version = "0.2.5"
features = ["agent"]
[dependencies.ssh-keys]
version = "0.1.3"
[dependencies.ring]
version = "0.17"
default-features = false
features = ["std"]