summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorDavid <wendajiang93@163.com>2022-09-23 06:05:39 +0800
committerGitHub <noreply@github.com>2022-09-22 15:05:39 -0700
commit75857fbf739905bd6eac53751ac945bab33b0c99 (patch)
treefc5579e1436b0f36ed7d1bb83d217e59420c474d /Cargo.lock
parentc8db0c8ec65e9ff8e82c580806a7c5dc03774352 (diff)
feat: use once_cell instead of lazy_static (#1894)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock8
1 files changed, 7 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 10fae527..90b8073f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -809,10 +809,10 @@ dependencies = [
"futures-util",
"gitignore",
"handlebars",
- "lazy_static",
"log",
"memchr",
"notify",
+ "once_cell",
"opener",
"predicates",
"pretty_assertions",
@@ -998,6 +998,12 @@ dependencies = [
]
[[package]]
+name = "once_cell"
+version = "1.15.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
+
+[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"