-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
34 lines (32 loc) · 972 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
29
30
31
32
33
34
[package]
name = "grillon"
version = "0.6.0"
authors = ["theredfish <[email protected]>"]
description = "Grillon offers an elegant and natural way to approach API testing in Rust."
repository = "https://github.com/theredfish/grillon"
keywords = ["test", "http", "api", "e2e"]
categories = ["development-tools::testing"]
readme = "README.md"
license = "MIT OR Apache-2.0"
include = ["/src", "LICENSE*", "README.md"]
edition = "2021"
[dependencies]
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
http = "1.2.0"
url = "2.5.4"
futures = "0.3.31"
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.4"
jsonpath-rust = "0.7.3"
jsonschema = "0.28.0"
reqwest = { version = "0.12.9", features = ["json", "cookies"] }
thiserror = "2.0.4"
regex = "1.11.1"
[dev-dependencies]
tokio = { version = "1.42.0", features = ["macros"] }
httpmock = "0.7.0"
async-trait = "0.1.83"
test-case = "3.3.1"
surf = "2.3.2"
base64 = "0.22.1"