-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 1.03 KB
/
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
[package]
name = "json_schema_test_suite"
version = "0.3.0"
authors = ["Samuele Maci <macisamuele@gmail.com>"]
edition = "2018"
publish = true
readme = "README.md"
keywords = ["jsonschema"]
categories = ["development-tools::procedural-macro-helpers", "development-tools::testing"]
description = "Procedural Macro Attribute to run all the test cases described in JSON-Schema-Test-Suite"
repository = "https://github.com/macisamuele/json-schema-test-suite-rs"
documentation = "http://docs.rs/json-schema-test-suite"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[dev-dependencies]
lazy_static = "1"
mockito = "0"
reqwest = { version = "0", default-features = false, features = [ "blocking", "json" ] }
serde_json = "1"
[dependencies]
json_schema_test_suite_proc_macro = { path = "./proc_macro", version = "=0.3.0" }
json_schema_test_suite_test_case = { path = "./test_case", version = "=0.3.0" }
serde_json = "1"
[workspace]
members = ["proc_macro", "test_case"]