-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
37 lines (34 loc) · 846 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
35
36
37
[package]
name = "boon"
version = "0.6.0"
edition = "2021"
description = "JSONSchema (draft 2020-12, draft 2019-09, draft-7, draft-6, draft-4) Validation"
readme = "README.md"
repository = "https://github.com/santhosh-tekuri/boon"
authors = ["santhosh kumar tekuri <santhosh.tekuri@gmail.com>"]
keywords = ["jsonschema", "validation"]
license = "MIT OR Apache-2.0"
categories = ["web-programming"]
exclude = [ "tests", ".github", ".gitmodules" ]
[dependencies]
serde = "1"
serde_json = "1"
regex = "1.10.3"
regex-syntax = "0.8.2"
url = "2"
fluent-uri = "0.1.4"
idna = "0.5"
percent-encoding = "2"
once_cell = "1"
base64 = "0.21"
ahash = "0.8.3"
appendlist = "1.4"
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
ureq = "2.9.6"
rustls = "0.22"
criterion = "0.5"
[[bench]]
name = "bench"
harness = false