aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2022-11-19 15:21:54 -0600
committerGitHub <noreply@github.com>2022-11-19 15:21:54 -0600
commit619984fa33aec8b9629770928c51ee81a3d3a63f (patch)
treefa6de3852d08dea6f77ba2549d98b9fcb457309a /Cargo.lock
parentbefa22c1f3ff0c1f0cb745b3f4e736910c053a8b (diff)
downloadazalea-drasl-619984fa33aec8b9629770928c51ee81a3d3a63f.tar.xz
Replace lazy_static with once_cell::sync::Lazy (#43)
* Remove lazy_static in azalea-chat * replace lazy_static with once_cell everywhere * fix * fix import * ignore a clippy warning in shape codegen
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock8
1 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8d8b68e5..b7b73c49 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -194,7 +194,7 @@ version = "0.3.0"
dependencies = [
"azalea-buf",
"azalea-language",
- "lazy_static",
+ "once_cell",
"serde",
"serde_json",
]
@@ -213,9 +213,9 @@ dependencies = [
"azalea-physics",
"azalea-protocol",
"azalea-world",
- "lazy_static",
"log",
"nohash-hasher",
+ "once_cell",
"parking_lot",
"regex",
"thiserror",
@@ -253,7 +253,7 @@ dependencies = [
name = "azalea-language"
version = "0.3.0"
dependencies = [
- "lazy_static",
+ "once_cell",
"serde",
"serde_json",
]
@@ -279,7 +279,7 @@ dependencies = [
"azalea-block",
"azalea-core",
"azalea-world",
- "lazy_static",
+ "once_cell",
"parking_lot",
"uuid",
]