summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2023-04-19 01:43:09 -0400
committerJohn Turner <jturner.usa@gmail.com>2023-04-19 01:43:09 -0400
commit0439506dcfb639bd494248450f7686b0a31580d3 (patch)
treed90ff4e2afb72c0c1315c024fbee6e6a8fad571b
parent26e662f5629da3683549594cf8551e018f49309c (diff)
downloadget-0439506dcfb639bd494248450f7686b0a31580d3.tar.gz
added if_chain to dependencies
-rw-r--r--Cargo.lock7
-rw-r--r--Cargo.toml1
2 files changed, 8 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index aa43997..265caf8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -15,6 +15,7 @@ dependencies = [
name = "get"
version = "0.0.0"
dependencies = [
+ "if_chain",
"proc-macro2",
"quote",
"syn",
@@ -28,6 +29,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
+name = "if_chain"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
+
+[[package]]
name = "itoa"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index c9e5e3f..6b67f7c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,6 +10,7 @@ proc-macro = true
syn = "2"
quote = "1.0.23"
proc-macro2 = "1.0.51"
+if_chain = "=1.0.2"
[dev-dependencies]
trybuild = "1" \ No newline at end of file