-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (43 loc) · 1.54 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (43 loc) · 1.54 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
[package]
name = "idcat"
version = "0.2.1"
edition = "2024"
license = "MIT"
[workspace]
members = [
"git-credential-helper",
]
resolver = "3"
[features]
default = ["kms"]
kms = ["dep:aws-sdk-kms", "dep:aws-config"]
[dependencies]
anyhow = "1.0"
authzoo = "0.1.1"
async-nats = "0.49"
# This feature configureation works around an upstream issue where old creates with vulnerabilites were brought in
# https://github.com/smithy-lang/smithy-rs/issues/4651
aws-config = { version = "1", default-features = false, features = ["behavior-version-latest", "rt-tokio", "default-https-client"], optional = true }
aws-sdk-kms = { version = "1", default-features = false, features = ["behavior-version-latest", "rt-tokio", "default-https-client"], optional = true }
axum = "0.8"
base64 = "0.22"
clap = { version = "4.6", features = ["derive"] }
reqwest = { version = "0.13", default-features = false, features = ["blocking", "json", "native-tls"] }
rsa = { version = "0.9", features = ["sha2"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
signature = "2.2"
thiserror = "2.0"
tokio = { version = "1.52", features = ["fs", "macros", "rt-multi-thread", "net", "signal", "sync"] }
toml = "1.1"
tower-http = { version = "0.6", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
wildmatch = "2.4"
[dev-dependencies]
jsonwebtoken = { version = "10.3", features = ["rust_crypto"] }
[[example]]
name = "kms_sign_jwt"
path = "examples/kms_sign_jwt.rs"
required-features = ["kms"]