Flatten juniper_warp example (#289)
This isn't needed, as examples by default are built when the containing crate is tested. I also confirmed that `cargo run --example warp_server` still works.
This commit is contained in:
parent
78d5ab795b
commit
3ce3b21eb1
5 changed files with 2 additions and 29 deletions
|
@ -7,5 +7,4 @@ members = [
|
||||||
"juniper_iron",
|
"juniper_iron",
|
||||||
"juniper_rocket",
|
"juniper_rocket",
|
||||||
"juniper_warp",
|
"juniper_warp",
|
||||||
"juniper_warp/examples/warp_server/",
|
|
||||||
]
|
]
|
||||||
|
|
|
@ -19,4 +19,6 @@ tokio-threadpool = "0.1.7"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
juniper = { path = "../juniper", version = "0.10.0", features = ["expose-test-schema", "serde_json"] }
|
juniper = { path = "../juniper", version = "0.10.0", features = ["expose-test-schema", "serde_json"] }
|
||||||
|
env_logger = "0.5.11"
|
||||||
|
log = "0.4.3"
|
||||||
percent-encoding = "1.0"
|
percent-encoding = "1.0"
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "warp_server"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Tom Houlé <tom@tomhoule.com>"]
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
warp = "0.1.0"
|
|
||||||
juniper_warp = { path = "../.." }
|
|
||||||
env_logger = "0.5.11"
|
|
||||||
log = "0.4.3"
|
|
||||||
juniper = { path = "../../../juniper", version = ">=0.9, 0.10.0", features = ["expose-test-schema", "serde_json"] }
|
|
|
@ -1,17 +0,0 @@
|
||||||
[tasks.build-verbose]
|
|
||||||
condition = { rust_version = { min = "1.29.0" } }
|
|
||||||
|
|
||||||
[tasks.build-verbose.windows]
|
|
||||||
condition = { rust_version = { min = "1.29.0" }, env = { "TARGET" = "x86_64-pc-windows-msvc" } }
|
|
||||||
|
|
||||||
[tasks.test-verbose]
|
|
||||||
condition = { rust_version = { min = "1.29.0" } }
|
|
||||||
|
|
||||||
[tasks.test-verbose.windows]
|
|
||||||
condition = { rust_version = { min = "1.29.0" }, env = { "TARGET" = "x86_64-pc-windows-msvc" } }
|
|
||||||
|
|
||||||
[tasks.ci-coverage-flow]
|
|
||||||
condition = { rust_version = { min = "1.29.0" } }
|
|
||||||
|
|
||||||
[tasks.ci-coverage-flow.windows]
|
|
||||||
disabled = true
|
|
Loading…
Add table
Reference in a new issue