mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* remove yew-dsl * remove yew-components * remove yew-services * remove yew::format * fix CI * move yew::agent to yew-agent crate * move yew-functional to yew plus a couple of misc fixes * move futures and neqassign out of yewtil * move yewtil::store to yew_agent, remove yewtil * formatting * fix tests * update docs * use `rustwasm` gloo repo instead of mine * add docs * use rustwasm/gloo repo * remove unused file * fix Makefile.toml * Fix issues after rebase * Apply suggestions from code review (part 1) Co-authored-by: mc1098 <m.cripps1@uni.brighton.ac.uk> * Apply suggestions from code review (part 2) * move `#[function_component(_)]` tests missed those before * Apply suggestions from code review Co-authored-by: mc1098 <m.cripps1@uni.brighton.ac.uk> Co-authored-by: mc1098 <m.cripps1@uni.brighton.ac.uk>
19 lines
493 B
TOML
19 lines
493 B
TOML
[package]
|
|
name = "router"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
instant = { version = "0.1", features = ["wasm-bindgen"] }
|
|
lipsum = "0.8"
|
|
log = "0.4"
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
wasm-logger = "0.2"
|
|
yew = { path = "../../packages/yew" }
|
|
yew-router = { path = "../../packages/yew-router" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
lazy_static = "1.4.0"
|
|
gloo = "0.2"
|