forked from parallaxsecond/parsec-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (37 loc) · 1 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
[package]
name = "parsec-tool"
version = "0.7.0"
authors = ["Contributors to the Parsec project"]
description = "Parsec Command Line Interface"
license = "Apache-2.0"
repository = "https://github.com/parallaxsecond/parsec-tool"
readme = "README.md"
keywords = ["parsec", "cli", "tool"]
categories = ["development-tools", "command-line-utilities"]
edition = "2018"
documentation = "https://docs.rs/crate/parsec-tool"
rust-version = "1.66.0"
[dependencies]
parsec-client = "0.16.0"
# TODO: Fixed until the MSRV is bumped!
clap = { version = "=4.3.24", features = ["derive", "std"] }
thiserror = "1.0.20"
env_logger = "0.10.0"
oid = { version = "0.2", features = ["serde_support"] }
pem = "1.1.0"
base64 = "0.13.0"
picky-asn1 = "0.8.0"
picky-asn1-der = "0.4.1"
picky-asn1-x509 = "0.12.0"
serde = "1.0.123"
sha2 = "0.9.9"
log = "0.4.14"
rcgen = { version = "0.9.2", features = ["pem"] }
[lib]
name = "parsec_tool"
path = "src/lib.rs"
[[bin]]
name = "parsec-tool"
[features]
default = []
spiffe-auth = ["parsec-client/spiffe"]