summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-06-24 16:40:50 +0100
committerNadrieril2020-06-24 16:41:54 +0100
commitbbf874fdd4af77493e6f028608e299c0130e9ec0 (patch)
tree1f94a60e6881e3df7c5f53453a1ec22092e2dac1
parent48549dfd6e740768f4c8a8cf47e0efa113dfe686 (diff)
chore: remove unused dependencies using cargo-udeps
-rw-r--r--Cargo.lock8
-rw-r--r--dhall/Cargo.toml1
-rw-r--r--dhall_proc_macros/Cargo.toml1
3 files changed, 0 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8043641..66ead79 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -188,7 +188,6 @@ dependencies = [
"serde 1.0.114 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_cbor 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"sha2 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"version-sync 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"walkdir 2.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -198,7 +197,6 @@ dependencies = [
name = "dhall_proc_macros"
version = "0.5.0"
dependencies = [
- "itertools 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro2 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1142,11 +1140,6 @@ version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
-name = "smallvec"
-version = "1.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
name = "socket2"
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1651,7 +1644,6 @@ dependencies = [
"checksum sha-1 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
"checksum sha2 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "72377440080fd008550fe9b441e854e43318db116f90181eef92e9ae9aedab48"
"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
-"checksum smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c7cb5678e1615754284ec264d9bb5b4c27d2018577fd90ac0ceb578591ed5ee4"
"checksum socket2 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)" = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
"checksum static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
"checksum syn 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)" = "e8d5d96e8cbb005d6959f119f773bfaebb5684296108fb32600c00cde305b2cd"
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml
index 1730e36..69b2ac8 100644
--- a/dhall/Cargo.toml
+++ b/dhall/Cargo.toml
@@ -23,7 +23,6 @@ pest_consume = "1.0"
serde = "1.0"
serde_cbor = "0.9.0"
sha2 = "0.9.0"
-smallvec = "1.0.0"
url = "2.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
diff --git a/dhall_proc_macros/Cargo.toml b/dhall_proc_macros/Cargo.toml
index d5d998f..4d4389b 100644
--- a/dhall_proc_macros/Cargo.toml
+++ b/dhall_proc_macros/Cargo.toml
@@ -14,7 +14,6 @@ proc-macro = true
doctest = false
[dependencies]
-itertools = "0.9.0"
quote = "1.0"
proc-macro2 = "1.0"
syn = "1.0"