Skip to content

Commit e0de5d0

Browse files
authored
Merge pull request #42 from azriel91/maintenance/update-dependencies
2 parents 129cc8f + a5a0268 commit e0de5d0

File tree

6 files changed

+26
-33
lines changed

6 files changed

+26
-33
lines changed

.cargo/audit.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
[advisories]
22
ignore = [
3-
# `proc-macro-error` is Unmaintained.
4-
#
5-
# Transitive dependency of `syn_derive`.
6-
# Pending <https://github.com/rs-tml/rstml/issues/56>.
7-
"RUSTSEC-2024-0370",
8-
93
# `derivative` is unmaintained.
104
#
115
# Transitive dependency of `log4rs`.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.9.2 (2025-01-27)
4+
5+
* Update dependency versions and address `RUSTSEC-2024-0370`.
6+
7+
38
## 0.9.1 (2025-01-12)
49

510
* Update dependency versions.

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ members = [
4242
]
4343

4444
[workspace.package]
45-
version = "0.9.1"
45+
version = "0.9.2"
4646
authors = ["Azriel Hoh <azriel91@gmail.com>"]
4747
edition = "2021"
4848
homepage = "https://github.com/azriel91/dot_ix"
@@ -54,41 +54,41 @@ license = "MIT OR Apache-2.0"
5454

5555
[workspace.dependencies]
5656
# dot_ix crates
57-
dot_ix = { version = "0.9.1", path = "." }
58-
dot_ix_model = { version = "0.9.1", path = "crate/model" }
59-
dot_ix_rt = { version = "0.9.1", path = "crate/rt" }
60-
dot_ix_static_check_macros = { version = "0.9.1", path = "crate/static_check_macros" }
61-
dot_ix_web_components = { version = "0.9.1", path = "crate/web_components" }
57+
dot_ix = { version = "0.9.2", path = "." }
58+
dot_ix_model = { version = "0.9.2", path = "crate/model" }
59+
dot_ix_rt = { version = "0.9.2", path = "crate/rt" }
60+
dot_ix_static_check_macros = { version = "0.9.2", path = "crate/static_check_macros" }
61+
dot_ix_web_components = { version = "0.9.2", path = "crate/web_components" }
6262

6363
# external crates
6464
axum = "0.7.9"
6565
cfg-if = "1"
6666
console_error_panic_hook = "0.1"
6767
console_log = "1"
6868
gloo-net = "0.6.0"
69-
indexmap = "2.7.0"
69+
indexmap = "2.7.1"
7070
indoc = "2.0.5"
71-
js-sys = "0.3.76"
72-
web-sys = "0.3.76"
73-
leptos = { version = "0.7.3" }
74-
leptos_axum = "0.7.3"
75-
leptos_meta = { version = "0.7.3" }
76-
leptos_router = { version = "0.7.3" }
77-
leptos_router_macro = { version = "0.7.3" }
78-
leptos-use = "0.15.3"
71+
js-sys = "0.3.77"
72+
web-sys = "0.3.77"
73+
leptos = { version = "0.7.4" }
74+
leptos_axum = "0.7.4"
75+
leptos_meta = { version = "0.7.4" }
76+
leptos_router = { version = "0.7.4" }
77+
leptos_router_macro = { version = "0.7.4" }
78+
leptos-use = "0.15.5"
7979
log = "0.4"
8080
log4rs = { version = "1.3.0", default-features = false }
8181
monaco = "0.5.0"
8282
serde = "1.0.217"
8383
tempfile = "3.15.0"
8484
tokio = "1.43.0"
8585
tower = "0.5.2"
86-
wasm-bindgen = "0.2.99"
86+
wasm-bindgen = "0.2.100"
8787
tailwind-css = "0.13.0"
8888
thiserror = "2.0.11"
8989
tracing = "0.1.41"
9090
http = "1.2.0"
91-
proc-macro2 = "1.0.92"
91+
proc-macro2 = "1.0.93"
9292
quote = "1.0.38"
9393
reqwest = "0.12.12"
9494
syn = "2.0.96"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ https://user-images.githubusercontent.com/2993230/253878816-0729970f-651f-45ef-a
2727
Add the following to `Cargo.toml`
2828

2929
```toml
30-
dot_ix = "0.9.1"
30+
dot_ix = "0.9.2"
3131

3232
# Enables the `FlexDiag` web component.
33-
dot_ix = { version = "0.9.1", features = ["flex_diag"] }
33+
dot_ix = { version = "0.9.2", features = ["flex_diag"] }
3434

3535
# Enables server side dot generation.
3636
# Requires graphviz `dot` to be installed server side.
37-
dot_ix = { version = "0.9.1", features = ["server_side_graphviz"] }
37+
dot_ix = { version = "0.9.2", features = ["server_side_graphviz"] }
3838
```
3939

4040

deny.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,6 @@ yanked = "warn"
7070
# A list of advisory IDs to ignore. Note that ignored advisories will still
7171
# output a note when they are encountered.
7272
ignore = [
73-
# `proc-macro-error` is Unmaintained.
74-
#
75-
# Transitive dependency of `syn_derive`.
76-
# Pending <https://github.com/rs-tml/rstml/issues/56>.
77-
"RUSTSEC-2024-0370",
78-
7973
# `derivative` is unmaintained.
8074
#
8175
# Transitive dependency of `log4rs`.

playground/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ axum = { workspace = true, optional = true }
2020
console_error_panic_hook = { workspace = true }
2121
console_log = { workspace = true }
2222
cfg-if = { workspace = true }
23-
dot_ix = { version = "0.9.1", path = ".." }
23+
dot_ix = { version = "0.9.2", path = ".." }
2424
gloo-net = { workspace = true, features = ["http"] }
2525
leptos = { workspace = true }
2626
leptos_axum = { workspace = true, optional = true }

0 commit comments

Comments
 (0)