leptos/examples/gtk/Cargo.toml

19 lines
526 B
TOML
Raw Normal View History

2022-10-27 02:28:30 +00:00
[package]
name = "gtk"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-04-05 03:11:28 +00:00
leptos = { path = "../../leptos", features = ["csr"] }
2024-04-27 15:08:10 +00:00
throw_error = { path = "../../any_error/" }
2024-03-30 01:55:59 +00:00
any_spawner = { path = "../../any_spawner/" }
next_tuple = { path = "../../next_tuple/" }
gtk = { version = "0.8.0", package = "gtk4", optional = true }
paste = "1.0.14"
console_error_panic_hook = { version = "0.1", optional = true }
2024-03-30 01:55:59 +00:00
[features]
gtk = ["dep:gtk", "any_spawner/glib"]
wasm = ["any_spawner/wasm-bindgen", "dep:console_error_panic_hook"]