Skip to content

Commit

Permalink
prune unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamby777 committed Jan 19, 2024
1 parent dfb6d04 commit 83bea2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
5 changes: 0 additions & 5 deletions pets-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,10 @@ 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"]}
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"
6 changes: 3 additions & 3 deletions pets-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ mod util;
mod world;
mod wrapped;

#[allow(unused_imports)]
mod prelude {
pub use crate::items::*;
pub use crate::limiq::*;
Expand All @@ -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;
Expand Down

0 comments on commit 83bea2b

Please sign in to comment.