-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 963 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "jsonschema-equivalent"
version = "0.1.0"
authors = ["Samuele Maci <[email protected]>"]
edition = "2018"
readme = "README.md"
keywords = ["jsonschema"]
categories = ["web-programming"]
description = "A JSON Schema optimiser library."
repository = "https://github.com/macisamuele/jsonschema-equivalent"
documentation = "http://docs.rs/jsonschema-equivalent"
license = "MIT"
[features]
default = []
logging = [] # logging is automatically enabled on debug builds via `build.rs`
[dev-dependencies]
env_logger = "0"
pathsep = "0"
test-case = "1"
jsonschema = "0"
[dependencies]
lazy_static = "1"
log = "0" # Dependency used by the code generated by `rule_processor_logger`
jsonschema-equivalent-rule-processor-logger = { path = "./rule_processor_logger", version = "= 0.1.0" }
serde_json = "1"
[workspace]
members = ["rule_processor_logger"]