yewprint/Cargo.toml

31 lines
801 B
TOML
Raw Normal View History

2020-09-03 14:45:38 +00:00
[package]
2020-09-20 15:06:28 +00:00
name = "yewprint"
2020-09-03 14:45:38 +00:00
version = "0.1.0"
authors = ["Cecile Tonglet <cecile.tonglet@cecton.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
2020-09-23 11:42:26 +00:00
[badges]
travis-ci = { repository = "cecton/yewprint", branch = "main" }
is-it-maintained-issue-resolution = { repository = "cecton/yewprint" }
is-it-maintained-open-issues = { repository = "cecton/yewprint" }
2020-09-13 20:11:50 +00:00
[features]
default = []
2020-09-25 19:47:11 +00:00
doc = ["syntect"]
2020-09-13 20:11:50 +00:00
2020-09-03 14:45:38 +00:00
[dependencies]
wasm-bindgen = "^0.2"
2020-09-13 16:16:01 +00:00
yew = { git = "https://github.com/yewstack/yew.git", rev = "1507c21b" }
2020-09-12 09:08:17 +00:00
web-sys = "0.3"
2020-09-13 16:16:01 +00:00
id_tree = "1.7"
2020-09-13 05:53:12 +00:00
[build-dependencies]
regex = { version = "1", default-features = false, features = ["std"] }
heck = "0.3"
2020-09-25 19:47:11 +00:00
syntect = { version = "4.4.0", optional = true }