-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (43 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
55 lines (43 loc) · 1.3 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "oasert"
version = "0.1.4"
authors = ["Kalev Gonvick kalev.gonvick@idemio.dev"]
edition = "2024"
repository = "https://github.com/idemio/OASert"
license = "Apache-2.0"
readme = "README.md"
description = "A library for verifying in-flight requests against a provided OpenAPI 3.1.x or 3.0.x specification."
keywords = ["oas", "openapi", "specification", "verification", "security"]
[profile.release]
strip = "symbols"
opt-level = 3
[features]
hyper = ["dep:hyper"]
lambda_http = ["dep:lambda_http"]
[dependencies]
jsonschema = "0.30.0"
serde_json = "1.0.140"
dashmap = "7.0.0-rc2"
log = "0.4.27"
serde = "1.0.219"
http = "1.3.1"
bytes = "1.10.1"
http-body-util = "0.1.3"
percent-encoding = "2.3.1"
hyper = { version = "1.6.0", optional = true }
lambda_http = { version = "0.15.1", optional = true }
[dev-dependencies]
hyper = { version = "1.6.0", features = ["http1", "server"] }
hyper-util = "0.1.14"
tokio = { version = "1.45.0", features = ["rt", "rt-multi-thread", "macros"] }
http-body-util = "0.1.3"
lambda_http = "0.15.1"
[[example]]
name = "hyper-validation"
path = "examples/hyper-validation/main.rs"
[[example]]
name = "aws-lambda-http-validation"
path = "examples/aws-lambda-http-validation/main.rs"
[[example]]
name = "hyper-gateway-example"
path = "examples/hyper-gateway-example/main.rs"