summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2021-06-02 13:45:12 +0200
committerCanop <cano.petrole@gmail.com>2021-06-02 13:45:12 +0200
commit77f40f74c38392a5213f99006138d74772ac5c6c (patch)
tree145732e2e45e0dd3bf17e2a2f3e07027cc5d3338 /Cargo.lock
parent7635373786d1c0fbc45c326d4a0a8914396f7051 (diff)
make the number of threads used for file summing configurable
Also replace lazy_static with once_cell
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock42
1 files changed, 32 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d303da9..2eec5b0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -162,11 +162,11 @@ dependencies = [
"image",
"is_executable",
"lazy-regex",
- "lazy_static",
"lfs-core",
"libc",
"memmap",
- "minimad",
+ "minimad 0.8.0",
+ "once_cell",
"open",
"pathdiff",
"phf",
@@ -179,7 +179,7 @@ dependencies = [
"strict",
"syntect",
"tempfile",
- "termimad",
+ "termimad 0.11.0",
"terminal-clipboard",
"toml",
"umask",
@@ -630,14 +630,14 @@ dependencies = [
"csv2svg",
"git2",
"lazy_static",
- "minimad",
+ "minimad 0.7.1",
"open",
"rusqlite",
"serde",
"serde_json",
"svg",
"tempfile",
- "termimad",
+ "termimad 0.10.3",
"thiserror",
]
@@ -773,9 +773,9 @@ dependencies = [
[[package]]
name = "lazy-regex"
-version = "2.0.2"
+version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5ccd39a8bca82b0a9c186d5ae0a73a79cc68ac3ff8dd35712baae188ea3b61d1"
+checksum = "7b00f3e4d8dc7bedf8f0947c7079bfe11f5dba7a96d95c8340c851eec8ffc41e"
dependencies = [
"lazy-regex-proc_macros",
"once_cell",
@@ -784,9 +784,9 @@ dependencies = [
[[package]]
name = "lazy-regex-proc_macros"
-version = "2.0.2"
+version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "495df213e9f7f0defedfe0138d038e8ef3dc662facefa0c6ab91e6f4bf34ab13"
+checksum = "cd6f321bbea1296f0fe12342fdf3e8eaf0b871b80b8a2dc37337e05cfe364c8d"
dependencies = [
"proc-macro2",
"quote",
@@ -931,6 +931,15 @@ dependencies = [
]
[[package]]
+name = "minimad"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8957f240ecb82a4e699bcf4db189fe8a7f5aa68b9e6d5abf829c62a9ee4630ed"
+dependencies = [
+ "once_cell",
+]
+
+[[package]]
name = "miniz_oxide"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1597,7 +1606,20 @@ dependencies = [
"crossbeam",
"crossterm",
"lazy_static",
- "minimad",
+ "minimad 0.7.1",
+ "thiserror",
+ "unicode-width",
+]
+
+[[package]]
+name = "termimad"
+version = "0.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eaf5f65b9464ce6ab282052f984ba2beead5937829fd9f0347f716fa8edf9cd0"
+dependencies = [
+ "crossbeam",
+ "crossterm",
+ "minimad 0.8.0",
"thiserror",
"unicode-width",
]