-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (64 loc) · 1.72 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[workspace]
resolver = "2"
members = [
"leptos_viz_macro",
"examples/*",
]
[workspace.dependencies]
viz = "0.8.0"
futures = "0.3"
http = "1.0.0"
http-body-util = "0.1.0"
hyper = "1.1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
parking_lot = "0.12.1"
cfg-if = "1"
tokio = { version = "1", default-features = false }
tokio-util = { version = "0.7", features = ["rt"] }
leptos_viz = { path = "." }
leptos_viz_macro = { path = "leptos_viz_macro" }
leptos = "0.6.6"
leptos_macro = "0.6.6"
leptos_meta = "0.6.6"
leptos_router = "0.6.6"
leptos_reactive = "0.6.6"
leptos_integration_utils = "0.6.6"
server_fn = "0.6.6"
server_fn_macro = "0.6.6"
# registration system
dashmap = "5"
once_cell = "1"
[package]
name = "leptos_viz"
version = "0.6.0"
edition = "2021"
authors = ["Greg Johnston", "Fangdun Tsai"]
license = "MIT"
repository = "https://github.com/leptos-rs/leptos"
description = "Viz integrations for the Leptos web framework."
[dependencies]
viz.workspace = true
futures.workspace = true
http.workspace = true
http-body-util.workspace = true
hyper.workspace = true
serde_json.workspace = true
tokio.workspace = true
parking_lot.workspace = true
cfg-if.workspace = true
leptos = { workspace = true, features = ["ssr"] }
leptos_meta = { workspace = true, features = ["ssr"] }
leptos_router = { workspace = true, features = ["ssr"] }
leptos_integration_utils.workspace = true
server_fn = { workspace = true, features = ["ssr"] }
dashmap.workspace = true
once_cell.workspace = true
tokio-util.workspace = true
[dev-dependencies]
tokio = { workspace = true, features = ["full"] }
[features]
nonce = ["leptos/nonce"]
wasm = []
default = ["tokio/full"]
experimental-islands = ["leptos_integration_utils/experimental-islands"]