aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2021-10-30 20:35:08 +0100
committerGitHub <[email protected]>2021-10-30 20:35:08 +0100
commit5a1ac81d14b04af4e5f66cf78565e955971fcb2f (patch)
tree208cefba24a5e5872e1324acda6a9e535d6b6942
parentba00227cc39a6619c67167b00628f2c26e8a42ae (diff)
parent5b03ea9011a662fbfc4097a6b280f69348c235c8 (diff)
Merge pull request #7 from diogo464/dependabot/cargo/flexi_logger-0.19.5
Bump flexi_logger from 0.18.0 to 0.19.5
-rw-r--r--Cargo.lock40
-rw-r--r--dotup_cli/Cargo.toml2
2 files changed, 20 insertions, 22 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b850791..b6bf7fe 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -12,6 +12,15 @@ dependencies = [
12] 12]
13 13
14[[package]] 14[[package]]
15name = "ansi_term"
16version = "0.12.1"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
19dependencies = [
20 "winapi",
21]
22
23[[package]]
15name = "anyhow" 24name = "anyhow"
16version = "1.0.41" 25version = "1.0.41"
17source = "registry+https://github.com/rust-lang/crates.io-index" 26source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -80,7 +89,6 @@ dependencies = [
80 "libc", 89 "libc",
81 "num-integer", 90 "num-integer",
82 "num-traits", 91 "num-traits",
83 "time",
84 "winapi", 92 "winapi",
85] 93]
86 94
@@ -161,18 +169,19 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
161 169
162[[package]] 170[[package]]
163name = "flexi_logger" 171name = "flexi_logger"
164version = "0.18.0" 172version = "0.19.5"
165source = "registry+https://github.com/rust-lang/crates.io-index" 173source = "registry+https://github.com/rust-lang/crates.io-index"
166checksum = "8ba2265890613939b533fa11c3728651531419ac549ccf527896201581f23991" 174checksum = "eb300b5c59fc4894ea567328a30a3ee3c5a63fb59e17c34b2327ac230455eb79"
167dependencies = [ 175dependencies = [
176 "ansi_term",
168 "atty", 177 "atty",
169 "chrono", 178 "chrono",
170 "glob", 179 "glob",
171 "lazy_static", 180 "lazy_static",
172 "log", 181 "log",
173 "regex", 182 "regex",
183 "rustversion",
174 "thiserror", 184 "thiserror",
175 "yansi",
176] 185]
177 186
178[[package]] 187[[package]]
@@ -444,6 +453,12 @@ dependencies = [
444] 453]
445 454
446[[package]] 455[[package]]
456name = "rustversion"
457version = "1.0.5"
458source = "registry+https://github.com/rust-lang/crates.io-index"
459checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088"
460
461[[package]]
447name = "serde" 462name = "serde"
448version = "1.0.130" 463version = "1.0.130"
449source = "registry+https://github.com/rust-lang/crates.io-index" 464source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -542,17 +557,6 @@ dependencies = [
542] 557]
543 558
544[[package]] 559[[package]]
545name = "time"
546version = "0.1.44"
547source = "registry+https://github.com/rust-lang/crates.io-index"
548checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
549dependencies = [
550 "libc",
551 "wasi",
552 "winapi",
553]
554
555[[package]]
556name = "toml" 560name = "toml"
557version = "0.5.8" 561version = "0.5.8"
558source = "registry+https://github.com/rust-lang/crates.io-index" 562source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -642,9 +646,3 @@ name = "winapi-x86_64-pc-windows-gnu"
642version = "0.4.0" 646version = "0.4.0"
643source = "registry+https://github.com/rust-lang/crates.io-index" 647source = "registry+https://github.com/rust-lang/crates.io-index"
644checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 648checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
645
646[[package]]
647name = "yansi"
648version = "0.5.0"
649source = "registry+https://github.com/rust-lang/crates.io-index"
650checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"
diff --git a/dotup_cli/Cargo.toml b/dotup_cli/Cargo.toml
index 8fdda0e..9ae6beb 100644
--- a/dotup_cli/Cargo.toml
+++ b/dotup_cli/Cargo.toml
@@ -18,7 +18,7 @@ path = "../dotup"
18 18
19[dependencies.flexi_logger] 19[dependencies.flexi_logger]
20features = ["colors"] 20features = ["colors"]
21version = "0.18" 21version = "0.19"
22 22
23[dev-dependencies] 23[dev-dependencies]
24tempfile = "3.2" 24tempfile = "3.2"