Skip to content

Commit c1ed9cf

Browse files
authored
Merge pull request #41 from azriel91/maintenance/update-dependencies
2 parents 2e5517e + b8fe3b8 commit c1ed9cf

File tree

5 files changed

+36
-25
lines changed

5 files changed

+36
-25
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,14 @@ jobs:
129129

130130
build_playground_linux:
131131
name: Build Playground (Linux)
132-
runs-on: ubuntu-latest
133-
timeout-minutes: 20
132+
# On `ubuntu-latest`, this job fails because the CI runner is CPU bound
133+
# when `monaco` is built.
134+
#
135+
# Trying 22.04 to see if it alleviates the problem.
136+
#
137+
# See <https://github.com/actions/runner-images/issues/6680>
138+
runs-on: ubuntu-22.04
139+
timeout-minutes: 25
134140
steps:
135141
- uses: actions/checkout@v4
136142
- name: 'Install Rust'

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.1 (2025-01-11)
4+
5+
* Update dependency versions.
6+
7+
38
## 0.9.0 (2024-12-15)
49

510
* ***Breaking:*** Upgrade to `leptos 0.7.0`

Cargo.toml

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

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

5555
[workspace.dependencies]
5656
# dot_ix crates
57-
dot_ix = { version = "0.9.0", path = "." }
58-
dot_ix_model = { version = "0.9.0", path = "crate/model" }
59-
dot_ix_rt = { version = "0.9.0", path = "crate/rt" }
60-
dot_ix_static_check_macros = { version = "0.9.0", path = "crate/static_check_macros" }
61-
dot_ix_web_components = { version = "0.9.0", path = "crate/web_components" }
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" }
6262

6363
# external crates
6464
axum = "0.7.9"
@@ -70,28 +70,28 @@ indexmap = "2.7.0"
7070
indoc = "2.0.5"
7171
js-sys = "0.3.76"
7272
web-sys = "0.3.76"
73-
leptos = { version = "0.7.0" }
74-
leptos_axum = "0.7.0"
75-
leptos_meta = { version = "0.7.0" }
76-
leptos_router = { version = "0.7.0" }
77-
leptos_router_macro = { version = "0.7.0" }
78-
leptos-use = "0.14.0"
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"
7979
log = "0.4"
8080
log4rs = { version = "1.3.0", default-features = false }
8181
monaco = "0.5.0"
82-
serde = "1.0.216"
83-
tempfile = "3.14.0"
84-
tokio = "1.42.0"
82+
serde = "1.0.217"
83+
tempfile = "3.15.0"
84+
tokio = "1.43.0"
8585
tower = "0.5.2"
8686
wasm-bindgen = "0.2.99"
8787
tailwind-css = "0.13.0"
88-
thiserror = "2.0.7"
88+
thiserror = "2.0.11"
8989
tracing = "0.1.41"
9090
http = "1.2.0"
9191
proc-macro2 = "1.0.92"
92-
quote = "1.0.37"
93-
reqwest = "0.12.9"
94-
syn = "2.0.90"
92+
quote = "1.0.38"
93+
reqwest = "0.12.12"
94+
syn = "2.0.96"
9595
serde_yaml = "0.9.34"
9696

9797
[workspace.lints.rust]

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.0"
30+
dot_ix = "0.9.1"
3131

3232
# Enables the `FlexDiag` web component.
33-
dot_ix = { version = "0.9.0", features = ["flex_diag"] }
33+
dot_ix = { version = "0.9.1", 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.0", features = ["server_side_graphviz"] }
37+
dot_ix = { version = "0.9.1", features = ["server_side_graphviz"] }
3838
```
3939

4040

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.0", path = ".." }
23+
dot_ix = { version = "0.9.1", path = ".." }
2424
gloo-net = { workspace = true, features = ["http"] }
2525
leptos = { workspace = true }
2626
leptos_axum = { workspace = true, optional = true }

0 commit comments

Comments
 (0)