f02e427cab
* Add a new integration_tests subdirectory that holds integration tests * Add a new, temporary (and really minimal) 2018 edition test crate
17 lines
294 B
TOML
17 lines
294 B
TOML
[package]
|
|
name = "juniper_tests"
|
|
version = "0.1.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
juniper = { version = "0.11.0", path = "../../juniper" }
|
|
serde_json = { version = "1" }
|
|
|
|
[dev-dependencies]
|
|
fnv = "1.0.3"
|
|
indexmap = "1.0"
|
|
|
|
[[test]]
|
|
name = "integration_tests"
|
|
path = "src/lib.rs"
|
|
harness = true
|