diff options
author | gennyble <gen@nyble.dev> | 2025-04-04 01:45:07 -0500 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2025-04-04 01:45:07 -0500 |
commit | 4410950c761970d640af00f245fdba859f8795b0 (patch) | |
tree | ae2ced50c1ea96f01eed51e1ee0394473475da81 /Cargo.lock | |
parent | 31d650e75acfd447cf6c58d29ca4d6ad1010a65c (diff) | |
download | corgi-4410950c761970d640af00f245fdba859f8795b0.tar.gz corgi-4410950c761970d640af00f245fdba859f8795b0.zip |
rip out module system
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 33 |
1 files changed, 8 insertions, 25 deletions
diff --git a/Cargo.lock b/Cargo.lock index 85f7e8b..eefd0c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,15 +89,21 @@ dependencies = [ "http-body-util", "hyper", "hyper-util", - "libloading", "regex-lite", "rusqlite", "sha2", - "smalldog", "tokio", ] [[package]] +name = "corgi-stats" +version = "0.1.0" +dependencies = [ + "rusqlite", + "time", +] + +[[package]] name = "cpufeatures" version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -319,16 +325,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] -name = "libloading" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" -dependencies = [ - "cfg-if", - "windows-targets", -] - -[[package]] name = "libsqlite3-sys" version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -500,10 +496,6 @@ dependencies = [ ] [[package]] -name = "smalldog" -version = "0.1.0" - -[[package]] name = "smallvec" version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -520,15 +512,6 @@ dependencies = [ ] [[package]] -name = "stats_module" -version = "0.1.0" -dependencies = [ - "rusqlite", - "smalldog", - "time", -] - -[[package]] name = "syn" version = "2.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" |