-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (34 loc) · 1.08 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
[package]
name = "service_policy_kit"
version = "0.7.1"
authors = ["Dotan Nahum <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "A toolkit to verify services against security policies"
repository = "https://github.com/SpectralOps/service-policy-kit"
[lib]
name = "service_policy_kit"
[dependencies]
reqwest = { version = "0.12.4", features = ["blocking", "json"] }
serde = { version = "1" }
serde_json = { version = "1" }
serde_derive = { version = "1" }
serde_yaml = { version = "0.9" }
fancy-regex = { version = "0.13.0" }
log = { version = "0.4.14" }
# env_logger = { version = "0.9.0" }
histogram = { version = "0.6.9" }
# atty = { version = "0.2.14" }
native-tls = { version = "0.2.8" }
x509-parser = { version = "0.4.1" }
chrono = { version = "0.4.6" }
junit-report = { version = "0.6.0" }
subprocess = { version = "0.2.9" }
difference = { version = "2.0.0" }
openapi = { version = "0.1.5" }
anyhow = { version = "1.0.44" }
console = { version = "0.14.1" }
maplit = { version = "1.0.2" }
rusoto_core = { version = "0.48.0" }
[dev-dependencies]
mockito = "0.30.0"