diff --git a/Cargo.lock b/Cargo.lock index 6cc964e..8730a30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -795,7 +795,6 @@ dependencies = [ name = "yewprint" version = "0.1.0" dependencies = [ - "boolinator", "heck", "id_tree", "regex", diff --git a/yewprint/Cargo.toml b/yewprint/Cargo.toml index c947d5e..19aeb65 100644 --- a/yewprint/Cargo.toml +++ b/yewprint/Cargo.toml @@ -20,9 +20,6 @@ yew = { git = "https://github.com/yewstack/yew.git", rev = "db3170f629f" } web-sys = "0.3" id_tree = { version = "1.7", optional = true } yewtil = { git = "https://github.com/yewstack/yew.git", rev = "db3170f629f", features = ["pure"] } -# NOTE: this dependency needs to be removed when the feature bool_to_option lands in stable -# https://github.com/rust-lang/rust/issues/64260 -boolinator = "2.4.0" [build-dependencies] regex = { version = "1", default-features = false, features = ["std", "unicode-perl"] } diff --git a/yewprint/src/button_group.rs b/yewprint/src/button_group.rs index da4022f..dbfad85 100644 --- a/yewprint/src/button_group.rs +++ b/yewprint/src/button_group.rs @@ -1,4 +1,3 @@ -use boolinator::Boolinator; use yew::prelude::*; pub struct ButtonGroup { @@ -47,10 +46,10 @@ impl Component for ButtonGroup {