Remove unused dependencies (#747)

This commit is contained in:
Caio 2020-08-29 03:34:11 -03:00 committed by GitHub
parent 368ea6f96f
commit 2ab00f55d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View file

@ -39,19 +39,19 @@ scalar-naivetime = []
[dependencies] [dependencies]
juniper_codegen = { version = "0.14.2", path = "../juniper_codegen" } juniper_codegen = { version = "0.14.2", path = "../juniper_codegen" }
anyhow = { version = "1.0.32", optional = true } anyhow = { default-features = false, version = "1.0.32", optional = true }
bson = { version = "1.0.0", optional = true } bson = { version = "1.0", optional = true }
chrono = { version = "0.4.0", optional = true } chrono = { default-features = false, version = "0.4", optional = true }
fnv = "1.0.3" fnv = "1.0.3"
futures = "0.3.1" futures = { default-features = false, features = ["alloc"], version = "0.3.1" }
futures-enum = "0.1.12" futures-enum = "0.1.12"
indexmap = { version = "1.0.0", features = ["serde-1"] } indexmap = { version = "1.0", features = ["serde-1"] }
serde = { version = "1.0.8", features = ["derive"] } serde = { default-features = false, version = "1.0.8", features = ["derive"] }
serde_json = { version="1.0.2", optional = true } serde_json = { default-features = false, version = "1.0", optional = true }
static_assertions = "1.1" static_assertions = "1.1"
url = { version = "2", optional = true } url = { version = "2.0", optional = true }
uuid = { version = "0.8", optional = true } uuid = { default-features = false, version = "0.8", optional = true }
graphql-parser = {version = "0.3.0", optional = true } graphql-parser = { version = "0.3", optional = true }
[dev-dependencies] [dev-dependencies]
bencher = "0.1.2" bencher = "0.1.2"

View file

@ -21,7 +21,7 @@ proc-macro = true
proc-macro-error = "1.0.2" proc-macro-error = "1.0.2"
proc-macro2 = "1.0.1" proc-macro2 = "1.0.1"
quote = "1.0.3" quote = "1.0.3"
syn = { version = "1.0.3", features = ["full", "extra-traits", "parsing"] } syn = { default-features = false, version = "1.0.3", features = ["full", "extra-traits", "parsing"] }
[dev-dependencies] [dev-dependencies]
derive_more = "0.99.7" derive_more = "0.99.7"