Skip to content

Commit

Permalink
chore: update deps (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamilsan authored Sep 1, 2024
1 parent 9ffa9e4 commit 3ca44e6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: jetli/[email protected]
with:
# Sync version with `Cargo.toml`
version: "0.2.92"
version: "0.2.93"

- name: Install wasm-opt
run: sudo apt-get install -y binaryen
Expand Down
10 changes: 4 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ repository = "https://github.com/noviga/lerni"
include = ["src/**/*.rs", "examples/**/*.rs"]

[dependencies]
derive_more = "0.99"
derive_more = { version = "1.0", features = ["display"] }
getrandom = { version = "0.2", features = ["js"] }
gloo-events = "0.2"
gloo-utils = "0.2"
leptos = { version = "0.6", features = ["csr"] }
leptos-use = "0.10"
leptos-use = "0.13"
rand = { version = "0.8", default-features = false, features = ["getrandom"] }
yew = { version = "0.21", features = ["csr"], optional = true }
wasm-bindgen = "0.2.92"
wasm-bindgen = "0.2.93"

[dependencies.web-sys]
version = "0.3"
Expand Down Expand Up @@ -60,6 +60,4 @@ name = "text"
crate-type = ["cdylib"]

[features]
legacy = [
"yew",
]
legacy = ["yew"]
2 changes: 1 addition & 1 deletion src/legacy/properties/color.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub enum Color {
#[default]
None,
/// Arbitrary color with the string value.
#[display(fmt = "{_0}")]
#[display("{_0}")]
Value(&'static str),

/// Alice Blue color.
Expand Down
2 changes: 1 addition & 1 deletion src/properties/color.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub enum Color {
#[default]
None,
/// Arbitrary color with the string value.
#[display(fmt = "{_0}")]
#[display("{_0}")]
Value(&'static str),

/// Alice Blue color.
Expand Down

0 comments on commit 3ca44e6

Please sign in to comment.