aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-07-11 08:34:18 +0100
committerdiogo464 <[email protected]>2021-07-11 08:37:27 +0100
commit54112bd8b0273948cfc4f8f718b2655096321be8 (patch)
tree757144ddb5a08251219a579bc9d0acfa2c8301bc /Cargo.lock
parent1eae3cdd93fec0907e9450b4aaa791c7c2d845a1 (diff)
Added some tests to the dotup crate.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock90
1 files changed, 90 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a981e03..a44b60b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -98,6 +98,7 @@ dependencies = [
98 "log", 98 "log",
99 "serde", 99 "serde",
100 "slotmap", 100 "slotmap",
101 "tempfile",
101 "thiserror", 102 "thiserror",
102 "toml", 103 "toml",
103] 104]
@@ -130,6 +131,17 @@ dependencies = [
130] 131]
131 132
132[[package]] 133[[package]]
134name = "getrandom"
135version = "0.2.3"
136source = "registry+https://github.com/rust-lang/crates.io-index"
137checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
138dependencies = [
139 "cfg-if",
140 "libc",
141 "wasi",
142]
143
144[[package]]
133name = "glob" 145name = "glob"
134version = "0.3.0" 146version = "0.3.0"
135source = "registry+https://github.com/rust-lang/crates.io-index" 147source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -222,6 +234,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
222checksum = "afb2e1c3ee07430c2cf76151675e583e0f19985fa6efae47d6848a3e2c824f85" 234checksum = "afb2e1c3ee07430c2cf76151675e583e0f19985fa6efae47d6848a3e2c824f85"
223 235
224[[package]] 236[[package]]
237name = "ppv-lite86"
238version = "0.2.10"
239source = "registry+https://github.com/rust-lang/crates.io-index"
240checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
241
242[[package]]
225name = "proc-macro-error" 243name = "proc-macro-error"
226version = "1.0.4" 244version = "1.0.4"
227source = "registry+https://github.com/rust-lang/crates.io-index" 245source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -264,6 +282,55 @@ dependencies = [
264] 282]
265 283
266[[package]] 284[[package]]
285name = "rand"
286version = "0.8.4"
287source = "registry+https://github.com/rust-lang/crates.io-index"
288checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
289dependencies = [
290 "libc",
291 "rand_chacha",
292 "rand_core",
293 "rand_hc",
294]
295
296[[package]]
297name = "rand_chacha"
298version = "0.3.1"
299source = "registry+https://github.com/rust-lang/crates.io-index"
300checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
301dependencies = [
302 "ppv-lite86",
303 "rand_core",
304]
305
306[[package]]
307name = "rand_core"
308version = "0.6.3"
309source = "registry+https://github.com/rust-lang/crates.io-index"
310checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
311dependencies = [
312 "getrandom",
313]
314
315[[package]]
316name = "rand_hc"
317version = "0.3.1"
318source = "registry+https://github.com/rust-lang/crates.io-index"
319checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
320dependencies = [
321 "rand_core",
322]
323
324[[package]]
325name = "redox_syscall"
326version = "0.2.9"
327source = "registry+https://github.com/rust-lang/crates.io-index"
328checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee"
329dependencies = [
330 "bitflags",
331]
332
333[[package]]
267name = "regex" 334name = "regex"
268version = "1.5.4" 335version = "1.5.4"
269source = "registry+https://github.com/rust-lang/crates.io-index" 336source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -281,6 +348,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
281checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 348checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
282 349
283[[package]] 350[[package]]
351name = "remove_dir_all"
352version = "0.5.3"
353source = "registry+https://github.com/rust-lang/crates.io-index"
354checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
355dependencies = [
356 "winapi",
357]
358
359[[package]]
284name = "serde" 360name = "serde"
285version = "1.0.126" 361version = "1.0.126"
286source = "registry+https://github.com/rust-lang/crates.io-index" 362source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -327,6 +403,20 @@ dependencies = [
327] 403]
328 404
329[[package]] 405[[package]]
406name = "tempfile"
407version = "3.2.0"
408source = "registry+https://github.com/rust-lang/crates.io-index"
409checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
410dependencies = [
411 "cfg-if",
412 "libc",
413 "rand",
414 "redox_syscall",
415 "remove_dir_all",
416 "winapi",
417]
418
419[[package]]
330name = "termcolor" 420name = "termcolor"
331version = "1.1.2" 421version = "1.1.2"
332source = "registry+https://github.com/rust-lang/crates.io-index" 422source = "registry+https://github.com/rust-lang/crates.io-index"