-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 895 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 895 Bytes
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
[package]
name = "ucp-schema"
version = "1.2.0"
edition = "2021"
license = "Apache-2.0"
description = "Runtime resolution of UCP schema annotations"
keywords = ["ucp", "json-schema", "validation"]
categories = ["development-tools", "web-programming"]
rust-version = "1.70"
readme = "README.md"
repository = "https://github.com/Universal-Commerce-Protocol/ucp-schema"
[lib]
name = "ucp_schema"
[[bin]]
name = "ucp-schema"
path = "src/bin/ucp-schema.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
thiserror = "2"
clap = { version = "4", features = ["derive"] }
jsonschema = "0.26"
[dependencies.reqwest]
version = "0.12"
features = ["blocking", "json"]
optional = true
[features]
default = ["remote"]
remote = ["reqwest"]
[dev-dependencies]
assert_cmd = "2"
mockito = "1.7.2"
predicates = "3"
tempfile = "3"