-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (68 loc) · 2.29 KB
/
Cargo.toml
File metadata and controls
74 lines (68 loc) · 2.29 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
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
65
66
67
68
69
70
71
72
73
74
# SPDX-FileCopyrightText: The pasejo Authors
# SPDX-License-Identifier: 0BSD
[package]
name = "pasejo"
description = "passage re-implementation in Rust for teams"
version = "1.0.0"
authors = ["Sebastian Hoß <seb@xn--ho-hia.de>"]
license = "0BSD"
edition = "2024"
rust-version = "1.92"
homepage = "https://github.com/metio/pasejo"
repository = "https://github.com/metio/pasejo"
keywords = ["password", "manager", "age", "passage", "pass"]
categories = ["command-line-utilities"]
readme = "README.md"
exclude = [
".github/*",
"dev/*",
"docs/*",
"tests/*",
"vhs/*",
]
[features]
default = []
[dependencies]
age = { version = "0.11.2", features = ["armor", "cli-common", "plugin", "ssh"] }
anyhow = { version = "1.0.102" }
arboard = { version = "3.6.1", default-features = false, features = ["wayland-data-control"] }
clap = { version = "4.5.61", features = ["derive"] }
clap_complete = { version = "4.5.67", features = ["unstable-dynamic"] }
clap-verbosity-flag = { version = "3.0.4" }
confy = { version = "1.0.0" }
const-str = { version = "1.1.0" }
directories = { version = "6.0.0" }
duct = { version = "1.0.0" }
env_logger = { version = "0.11.9" }
human-panic = { version = "2.0.6" }
log = { version = "0.4.29" }
image = { version = "0.25.10" }
inquire = { version = "0.9.4", features = ["editor"] }
notify-rust = { version = "4.12.0" }
otp-std = { version = "0.2.3", features = ["auth", "sha2", "unsafe-length"] }
passwords = { version = "3.1.16" }
qr2term = { version = "0.3.3" }
regex = { version = "1.12.3" }
rqrr = { version = "0.10.1" }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149" }
shlex = { version = "1.3.0" }
ssh-key = { version = "0.6.7", features = ["ed25519", "encryption"] }
termtree = { version = "1.0.0" }
toml = { version = "1.0.6" }
ureq = { version = "3.2.0" }
uuid = { version = "1.22.0", features = ["v7"] }
which = { version = "8.0.2" }
[dev-dependencies]
assert_cmd = { version = "2.2.0" }
assert_fs = { version = "1.1.3" }
#mockall = { version = "0.13.1" }
predicates = "3.1.4"
regex = { version = "1.12.3" }
serial_test = { version = "3.4.0" }
ssh-key = { version = "0.6.7", features = ["ed25519", "rsa"] }
trycmd = { version = "1.1.1" }
[target.'cfg(unix)'.dev-dependencies]
rexpect = { version = "0.6.3" }
[build-dependencies]
cc = "1.2.56"