-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
54 lines (53 loc) · 1.54 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
[package]
name = "ironhide"
version = "1.0.9"
authors = ["IronCore Labs <[email protected]>"]
categories = ["cryptography"]
description = "Tool to easily encrypt and decrypt files to users and groups. Similar to GPG, but usable at scale."
documentation = "https://docs.rs/ironhide"
edition = "2021"
homepage = "https://github.com/ironcorelabs/ironhide"
include = [".cargo/config.toml", "**/*.rs", "./Cargo.toml"]
keywords = [
"cryptography",
"proxy-re-encryption",
"transform-encryption",
"secrets",
"encryption",
]
license = "AGPL-3.0-only"
readme = "README.md"
repository = "https://github.com/IronCoreLabs/ironhide"
[dependencies]
attohttpc = { version = "0.24", features = [
"form",
"json",
"tls-rustls",
"compress",
], default-features = false }
atty = "0.2.14"
base64 = "0.20"
clap = { version = "3", features = ["cargo", "derive", "suggestions"] }
derive_more = "0.99.6"
dirs = "4.0"
fancy-regex = "0.10"
ironoxide = { version = "2", features = [
"blocking",
"tls-rustls",
], default-features = false }
# this needs to stay/be updated to ironoxide's version
itertools = "0.10"
keyring = "1.2.0"
lazy_static = "1"
once_cell = "1.19"
prettytable-rs = "0.10"
promptly = "0.3"
rpassword = "7.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
textwrap = { version = "0.16", features = ["terminal_size"] }
# this needs to stay/be updated to ironoxide's version
time = "0.3.6"
tz-rs = { version = "0.6.14", default-features = false }
tzdb = { version = "0.5.0", default-features = false }
yansi = "0.5"