Skip to content

Commit ba5f1eb

Browse files
committed
fix deps issues
1 parent 2ac6ae8 commit ba5f1eb

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ members = [
88
"sss-cli",
99
"html-layouts-derive",
1010
"sss-web-app",
11-
"icon-derive", "theme-generator",
11+
"icon-derive",
12+
"theme-generator",
1213
]
1314
resolver = "2"
1415

icon-derive/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ description = "Macros for fast incremental loading tabler icons"
1212
proc-macro2 = "1"
1313
quote = "1"
1414
syn = { version = "2", features = ["full"] }
15-
reqwest = { version = "0.11", features = ["blocking"] }
15+
reqwest = { version = "^0.12", features = ["blocking"] }
1616

1717
[dev-dependencies]
18-
tabler-icon-definer = {path = ".", features = ["full"]}
19-
18+
tabler-icon-definer = { path = ".", features = ["full"] }
2019

2120

2221
[lib]

sss-web-app/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ repository.workspace = true
77
license.workspace = true
88

99
[dependencies]
10-
leptos = { version = "0.7.5", features = ["csr"] }
11-
leptos_meta = { version = "0.7.5" }
12-
leptos_router = { version = "0.7.5" }
13-
console_log = "1"
14-
log = "0.4"
10+
leptos = { version = "0.7.8", features = ["csr"] }
11+
leptos_meta = { version = "0.7.8" }
12+
leptos_router = { version = "0.7.8" }
13+
console_log = "1.0.0"
14+
log = "0.4.26"
1515
base64_light.workspace = true
1616
sss_core = { path = "../sss-lib/sss-core", features = ["leptos"] }
1717
sss_std = { path = "../sss-std" }
1818
render = { path = "../sss-lib/render" }
1919
theme = { path = "../sss-lib/theme" }
2020
toml.workspace = true
21-
wasm-bindgen-futures = { version = "0.4" }
21+
wasm-bindgen-futures = { version = "0.4.50" }
2222
serde = { workspace = true, features = ["derive"] }
2323
getrandom = { version = "0.2", features = ["js"] }
24-
console_error_panic_hook = { version = "0.1" }
25-
web-sys = { version = "0.3", features = [
24+
console_error_panic_hook = { version = "0.1.7" }
25+
web-sys = { version = "0.3.77", features = [
2626
"Document",
2727
"Window",
2828
"Navigator",
@@ -31,8 +31,8 @@ web-sys = { version = "0.3", features = [
3131
"Response",
3232
"RequestInit",
3333
] }
34-
codee = { version = "^0.3", features = ["json_serde"] }
35-
serde-wasm-bindgen = "0.6"
34+
codee = { version = "0.3.0", features = ["json_serde"] }
35+
serde-wasm-bindgen = "0.6.5"
3636
leptos-use = { version = "0.15.7", features = ["storage"] }
3737
serde_json.workspace = true
3838

0 commit comments

Comments
 (0)