From ae30499a4901d9ef5ce0ad182d6ea81ed9519b24 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Wed, 15 May 2024 19:19:54 +0200 Subject: [PATCH] Remove unused dependency --- Cargo.lock | 14 +------------- crates/dtmt/Cargo.toml | 1 - lib/sdk/Cargo.toml | 1 - 3 files changed, 1 insertion(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 660e7cc..336f957 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/crates/dtmt/Cargo.toml b/crates/dtmt/Cargo.toml index 4a98244..60cd70c 100644 --- a/crates/dtmt/Cargo.toml +++ b/crates/dtmt/Cargo.toml @@ -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" diff --git a/lib/sdk/Cargo.toml b/lib/sdk/Cargo.toml index 6745ff4..f060b4b 100644 --- a/lib/sdk/Cargo.toml +++ b/lib/sdk/Cargo.toml @@ -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"] }