@@ -12,15 +12,24 @@ http-body-util = "0.1.0"
12
12
hyper = " 1.1.0"
13
13
serde = { version = " 1" , features = [" derive" ] }
14
14
serde_json = " 1"
15
- tokio = { version = " 1" , default-features = false }
16
15
parking_lot = " 0.12.1"
16
+ cfg-if = " 1"
17
+
18
+ tokio = { version = " 1" , default-features = false }
19
+ tokio-util = { version = " 0.7" , features = [" rt" ] }
17
20
18
21
leptos_viz = { path = " ." }
19
- leptos = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 1eaf886" }
20
- leptos_meta = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 1eaf886" }
21
- leptos_router = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 1eaf886" }
22
- leptos_reactive = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 1eaf886" }
23
- leptos_integration_utils = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 1eaf886" }
22
+ leptos = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 04747fc" }
23
+ leptos_macro = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 04747fc" }
24
+ leptos_meta = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 04747fc" }
25
+ leptos_router = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 04747fc" }
26
+ leptos_reactive = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 04747fc" }
27
+ leptos_integration_utils = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 04747fc" }
28
+ server_fn = { git = " https://github.com/leptos-rs/leptos.git" , rev = " 04747fc" }
29
+
30
+ # registration system
31
+ dashmap = " 5"
32
+ once_cell = " 1"
24
33
25
34
[package ]
26
35
name = " leptos_viz"
@@ -37,17 +46,27 @@ futures.workspace = true
37
46
http.workspace = true
38
47
http-body-util.workspace = true
39
48
hyper.workspace = true
49
+ serde_json.workspace = true
50
+ tokio.workspace = true
51
+ parking_lot.workspace = true
52
+ cfg-if.workspace = true
53
+
40
54
leptos = { workspace = true , features = [" ssr" ] }
41
55
leptos_meta = { workspace = true , features = [" ssr" ] }
42
56
leptos_router = { workspace = true , features = [" ssr" ] }
43
57
leptos_integration_utils.workspace = true
44
- serde_json.workspace = true
45
- tokio.workspace = true
46
- parking_lot.workspace = true
58
+ server_fn = { workspace = true , features = [" ssr" ] }
59
+
60
+ dashmap.workspace = true
61
+ once_cell.workspace = true
62
+
63
+ tokio-util.workspace = true
47
64
48
65
[dev-dependencies ]
49
66
tokio = { workspace = true , features = [" full" ] }
50
67
51
68
[features ]
52
69
nonce = [" leptos/nonce" ]
70
+ wasm = []
71
+ default = [" tokio/full" ]
53
72
experimental-islands = [" leptos_integration_utils/experimental-islands" ]
0 commit comments