yewprint/Cargo.toml

33 lines
972 B
TOML
Raw Normal View History

2021-04-13 14:23:12 +00:00
[package]
2022-05-09 17:20:26 +00:00
name = "yewprint"
2022-09-19 14:18:04 +00:00
version = "0.3.1"
2022-05-09 17:20:26 +00:00
authors = ["Cecile Tonglet <cecile.tonglet@cecton.com>"]
edition = "2021"
2022-05-09 17:20:26 +00: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", "iconSvgPaths.js", "build.rs"]
keywords = ["blueprint", "yew", "ui"]
categories = ["gui"]
[features]
default = ["tree"]
tree = ["id_tree"]
2021-04-13 14:23:12 +00:00
[dependencies]
2022-11-22 12:06:39 +00:00
gloo = "0.6"
2022-05-09 17:20:26 +00:00
id_tree = { version = "1.7", optional = true }
wasm-bindgen = "0.2"
2022-11-22 12:06:39 +00:00
web-sys = { version = "0.3", features = ["DomRect", "Element", "Event", "HtmlSelectElement"] }
yew = "0.19"
2022-05-09 17:20:26 +00:00
[build-dependencies]
heck = "0.3"
2022-11-22 12:06:39 +00:00
regex = { version = "1", default-features = false, features = ["std", "unicode-perl"] }
2021-04-13 14:23:12 +00:00
2020-09-27 12:49:05 +00:00
[workspace]
2022-05-09 17:20:26 +00:00
members = ["yewprint-css", "yewprint-doc", "xtask"]