mirror of
https://github.com/yewprint/yewprint
synced 2024-11-25 13:00:19 +00:00
3f96db6a7e
Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com> Co-authored-by: Francois Stephany <francois@tamere.eu>
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "yewprint-doc"
|
|
version = "0.1.0"
|
|
authors = ["Cecile Tonglet <cecile.tonglet@cecton.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
web-sys = { version = "0.3", features = ["Window", "MediaQueryList", "Event", "HtmlInputElement"] }
|
|
gloo = "0.6"
|
|
yew = "0.19"
|
|
yew-router = "0.16"
|
|
# yew = { git = "https://github.com/yewstack/yew", branch = "master" }
|
|
# yew-router = { git = "https://github.com/yewstack/yew", branch = "master" }
|
|
yewprint = { path = ".." }
|
|
|
|
# `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size
|
|
# compared to the default allocator's ~10K. It is slower than the default
|
|
# allocator, however.
|
|
#
|
|
# Unfortunately, `wee_alloc` requires nightly Rust when targeting wasm for now.
|
|
wee_alloc = { version = "0.4.5", optional = true }
|
|
|
|
# The `console_error_panic_hook` crate provides better debugging of panics by
|
|
# logging them with `console.error`. This is great for development, but requires
|
|
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
|
|
# code size when deploying.
|
|
console_error_panic_hook = { version = "0.1.6", optional = true }
|
|
|
|
[build-dependencies]
|
|
syntect = "4.4.0"
|
|
build-data = "0.1.3"
|
|
|
|
[dev-dependencies]
|
|
ureq = "2.4"
|