Perform various optimizations #173

Merged
lucas merged 19 commits from feat/optimization into master 2024-07-10 19:45:52 +02:00
3 changed files with 1 additions and 15 deletions
Showing only changes of commit ae30499a49 - Show all commits

14
Cargo.lock generated
View file

@ -399,7 +399,7 @@ checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
dependencies = [
"glob",
"libc",
"libloading 0.8.3",
"libloading",
]
[[package]]
@ -949,7 +949,6 @@ dependencies = [
"futures",
"futures-util",
"glob",
"libloading 0.7.4",
"luajit2-sys",
"nanorand",
"notify",
@ -2009,16 +2008,6 @@ version = "0.2.154"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
[[package]]
name = "libloading"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
dependencies = [
"cfg-if",
"winapi",
]
[[package]]
name = "libloading"
version = "0.8.3"
@ -3103,7 +3092,6 @@ dependencies = [
"futures",
"futures-util",
"glob",
"libloading 0.7.4",
"luajit2-sys",
"nanorand",
"oodle",

View file

@ -13,7 +13,6 @@ dtmt-shared = { path = "../../lib/dtmt-shared", version = "*" }
futures = "0.3.25"
futures-util = "0.3.24"
glob = "0.3.0"
libloading = "0.7.4"
nanorand = "0.7.0"
oodle = { path = "../../lib/oodle", version = "*" }
pin-project-lite = "0.2.9"

View file

@ -12,7 +12,6 @@ fastrand = "2.1.0"
futures = "0.3.25"
futures-util = "0.3.24"
glob = "0.3.0"
libloading = "0.7.4"
nanorand = "0.7.0"
pin-project-lite = "0.2.9"
serde = { version = "1.0.147", features = ["derive"] }