summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-03-25 12:35:11 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-03-25 12:35:11 +0200
commit9761556033c1faaae37f995ba557c47f9f3c357f (patch)
tree5c6eae9e6a20e052d95cb4d112ee9098ea96ae2b /Cargo.lock
parent8b21be5e14f44c4f9b0d995ed73709bdde30028f (diff)
Identify where the current code needs the dirs to exist
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock35
1 files changed, 23 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b98bff4..d2341fe 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -183,6 +183,15 @@ dependencies = [
]
[[package]]
+name = "float-cmp"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
+dependencies = [
+ "num-traits",
+]
+
+[[package]]
name = "form_urlencoded"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -342,12 +351,6 @@ dependencies = [
]
[[package]]
-name = "minimal-lexical"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
-
-[[package]]
name = "nix"
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -374,13 +377,18 @@ dependencies = [
]
[[package]]
-name = "nom"
-version = "7.1.3"
+name = "normalize-line-endings"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
+
+[[package]]
+name = "num-traits"
+version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
+checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
- "memchr",
- "minimal-lexical",
+ "autocfg",
]
[[package]]
@@ -420,8 +428,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd"
dependencies = [
"difflib",
+ "float-cmp",
"itertools",
+ "normalize-line-endings",
"predicates-core",
+ "regex",
]
[[package]]
@@ -583,8 +594,8 @@ dependencies = [
"get-port",
"git2",
"nix 0.26.2",
- "nom",
"once_cell",
+ "predicates",
"rexpect",
"rustyline",
"shlex",