diff options
| -rw-r--r-- | Cargo.lock | 7 | ||||
| -rw-r--r-- | graphics/Cargo.toml | 1 |
2 files changed, 0 insertions, 8 deletions
@@ -12,12 +12,6 @@ dependencies = [ ] [[package]] -name = "anyhow" -version = "1.0.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" - -[[package]] name = "bindgen" version = "0.70.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -137,7 +131,6 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" name = "graphics" version = "0.1.0" dependencies = [ - "anyhow", "dungeon", "raylib", ] diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index 37c651a..5bb7680 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -4,7 +4,6 @@ version = "0.1.0" edition = "2024" [dependencies] -anyhow = "1" dungeon = { path = "../dungeon" } raylib = "5.5" |