-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathCargo.toml
35 lines (31 loc) · 1.19 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
[package]
name = "cherrybomb"
version = "1.0.1"
authors = ["BLST Security"]
description = """
Cherrybomb is a CLI tool that helps you avoid undefined user behavior by validating your API specifications.
"""
documentation = "https://github.com/blst-security/cherrybomb"
homepage = "https://blstsecurity.com/"
repository = "https://github.com/blst-security/cherrybomb"
keywords = ["API","security", "CLI", "OpenAPI", "scanning"]
categories = ["command-line-utilities","web-programming"]
license = "Apache-2.0"
edition = "2021"
default-run = "cherrybomb"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
thiserror = "1.0.37"
tokio = { version = "^1.23", features = ["rt-multi-thread", "macros"]}
clap = { version = "4.0.29", features = ["derive"] }
const_format = "0.2.30"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
cherrybomb-engine = { version = "^0.1", path = "./cherrybomb-engine"}
serde_yaml = "^0.9.0"
uuid = {version = "1.2.2", features = ["v4"] }
dirs = "4.0.0"
reqwest = { version = "^0.11",default_features = false, features = ["json","rustls-tls"] }
comfy-table = "6.1.4"
serde_derive = "1.0.152"