19 lines
578 B
TOML
19 lines
578 B
TOML
[package]
|
|
name = "gtk"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
leptos = { path = "../../leptos" }
|
|
throw_error = { path = "../../any_error/" }
|
|
|
|
# these are used to build the integration
|
|
gtk = { version = "0.9.0", package = "gtk4" }
|
|
next_tuple = { path = "../../next_tuple/" }
|
|
paste = "1.0"
|
|
|
|
# we want to support using glib for the reactive runtime event loop
|
|
any_spawner = { path = "../../any_spawner/", features = ["glib"] }
|
|
# yes, we want effects to run: this is a "frontend," not a backend
|
|
reactive_graph = { path = "../../reactive_graph", features = ["effects"] }
|