juniper/juniper_tests/Cargo.toml
theduke 141292ad91 Export codegen from main juniper crate
Use a trick for re-exporting proc-macros to supply juniper_derive as a
dependency of juniper.

Users will now just have to depend on juniper directly.
2017-12-02 02:27:41 +01:00

15 lines
238 B
TOML

[package]
name = "juniper_tests"
version = "0.1.0"
[dependencies]
juniper = { path = "../juniper" }
serde_json = { version = "1" }
[dev-dependencies]
fnv = "1.0.3"
[[test]]
name = "integration_tests"
path = "src/lib.rs"
harness = true