yewprint/Cargo.toml

31 lines
906 B
TOML
Raw Normal View History

2021-04-13 16:23:12 +02:00
[package]
2022-05-09 19:20:26 +02:00
name = "yewprint"
2023-04-24 19:06:11 +02:00
version = "0.4.4"
2022-05-09 19:20:26 +02:00
authors = ["Cecile Tonglet <cecile.tonglet@cecton.com>"]
edition = "2021"
2022-05-09 19:20:26 +02:00
license = "MIT OR Apache-2.0"
description = "Port of blueprintjs.com to Yew"
repository = "https://github.com/yewprint/yewprint"
homepage = "https://github.com/yewprint/yewprint"
documentation = "https://docs.rs/yewprint"
readme = "README.md"
include = ["src/**/*.rs", "README.md", "LICENSE.Apache-2.0", "LICENSE.MIT"]
2022-05-09 19:20:26 +02:00
keywords = ["blueprint", "yew", "ui"]
categories = ["gui"]
[features]
default = ["tree"]
tree = ["id_tree"]
2021-04-13 16:23:12 +02:00
[dependencies]
gloo = "0.8"
id_tree = { version = "1.8", optional = true }
implicit-clone = "0.3.5"
2022-05-09 19:20:26 +02:00
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["DomRect", "Element", "Event", "HtmlSelectElement", "DomTokenList", "CssStyleDeclaration"] }
yew = "0.20"
yew-callbacks = "0.2.1"
2020-09-27 14:49:05 +02:00
[workspace]
2022-05-09 19:20:26 +02:00
members = ["yewprint-css", "yewprint-doc", "xtask"]