Fix reqwest
features
This commit is contained in:
parent
dbe1b181db
commit
d21cc68933
2 changed files with 2 additions and 2 deletions
|
@ -12,6 +12,6 @@ futures = "0.3"
|
||||||
juniper = { path = "../../juniper" }
|
juniper = { path = "../../juniper" }
|
||||||
juniper_warp = { path = "../../juniper_warp" }
|
juniper_warp = { path = "../../juniper_warp" }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
reqwest = { version = "0.11", features = ["rustls-tls"] }
|
reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false }
|
||||||
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
||||||
warp = "0.3"
|
warp = "0.3"
|
||||||
|
|
|
@ -29,5 +29,5 @@ http-body = "0.4.5"
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] }
|
juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] }
|
||||||
pretty_env_logger = "0.4"
|
pretty_env_logger = "0.4"
|
||||||
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] }
|
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"], default-features = false }
|
||||||
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
||||||
|
|
Loading…
Reference in a new issue