-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 1.04 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
[package]
name = "amplify-runner"
version = "0.4.7"
edition = "2021"
repository = "https://github.com/amplify-security/runner"
readme = "README.adoc"
[[bin]]
name = "amplify-runner"
path = "src/main.rs"
[dependencies]
bpaf = { version = "0.9.12" }
color-eyre = { version = "0.6.5", features = ["track-caller", "capture-spantrace", "issue-url"] }
const-hex = "1.17.0"
enum_dispatch = "0.3.13"
hex-literal = "1.1.0"
jsonwebtoken = { git = "https://github.com/arsenin-kitsoft/jsonwebtoken", rev = "fd96c1c", features = ["use_pem", "rust_crypto"] }
reqwest = { version = "0.12.7", features = ["json", "rustls-tls"], default-features = false }
reqwest-middleware = { version = "0.4.2", default-features = false, features = ["json", "rustls-tls"] }
reqwest-retry = "0.7.0"
serde = { version = "1.0.204", features = ["derive"] }
sha2 = "0.10.8"
thiserror = "1.0.63"
tokei = "12.1.2"
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread", "signal", "process", "sync", "time", "io-util", "io-std", "parking_lot"] }
[dev-dependencies]
serde_json = "1"