22 lines
642 B
TOML
22 lines
642 B
TOML
[package]
|
|
name = "leptos_viz"
|
|
version = { workspace = true }
|
|
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 = { version = "0.4.8" }
|
|
futures = "0.3"
|
|
http = "0.2.8"
|
|
hyper = "0.14.23"
|
|
leptos = { workspace = true, features = ["ssr"] }
|
|
leptos_meta = { workspace = true, features = ["ssr"] }
|
|
leptos_router = { workspace = true, features = ["ssr"] }
|
|
leptos_integration_utils = { workspace = true }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
parking_lot = "0.12.1"
|