-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathCargo.toml
28 lines (26 loc) · 878 Bytes
/
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
[package]
name = "cherrybomb-engine"
version = "0.1.1"
authors = ["BLST Security"]
description = """
Cherrybomb enging crate
"""
documentation = "https://github.com/blst-security/cherrybomb"
repository = "https://github.com/blst-security/cherrybomb"
license = "Apache-2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cherrybomb-oas = {version = "^0.1", path="../cherrybomb-oas"}
anyhow = "1.0.66"
thiserror = "1.0.37"
serde_json = "^1.0"
clap = { version = "4.0.29", features = ["derive"] }
serde = { version = "^1.0", features = ["derive"] }
serde_yaml = "^0.9.0"
strum = "0.23" # legacy
strum_macros = "0.23" # legacy
url="^2" #legacy
base64 = "0.13" #legacy
reqwest = { version = "^0.11",default_features = false, features = ["json","rustls-tls"] } #legacy
serde_path_to_error = "0.1.14"