diff --git a/pets-lib/Cargo.toml b/pets-lib/Cargo.toml index 219fc56b..4ed8d9f5 100644 --- a/pets-lib/Cargo.toml +++ b/pets-lib/Cargo.toml @@ -7,7 +7,6 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -anyhow = "1.0.75" concat-idents = "1.1.5" dialogical = "*" godot = { git = "https://github.com/godot-rust/gdext", branch = "master", features = ["experimental-threads"]} @@ -15,7 +14,3 @@ indoc = "2.0.4" num_enum = "0.7.1" ribbons = "0.1.0" serde = {version = "1.0.188", features = ["derive"] } -serde_json = "1.0.107" -strum = "0.25.0" -strum_macros = "0.25.3" -thiserror = "1.0.50" diff --git a/pets-lib/src/lib.rs b/pets-lib/src/lib.rs index c0eda8ef..38d9874b 100644 --- a/pets-lib/src/lib.rs +++ b/pets-lib/src/lib.rs @@ -29,7 +29,6 @@ mod util; mod world; mod wrapped; -#[allow(unused_imports)] mod prelude { pub use crate::items::*; pub use crate::limiq::*; @@ -43,15 +42,16 @@ mod prelude { // is this bad practice? no clue and idc honestly // it's convenient with no real caveat, therefore... - pub use anyhow::{bail, Result}; pub use ribbons::unwrap_fmt; pub use serde::{Deserialize, Serialize}; pub use std::cell::RefCell; pub use std::collections::{HashMap, HashSet}; - pub use std::fmt::{Debug, Display}; pub use std::ops::{Deref, DerefMut}; pub use std::rc::Rc; + + #[allow(unused_imports)] + pub use std::fmt::{Debug, Display}; } struct PetsLib;