mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* yew::platform? * Stream Response. * Migrate example * Remove old implementation. * Remove extra implementation. * Prefer String instead of Cow. * Fix MSRV. * Fix trybuild. * Optimise Memory Allocation. * More optimisation. * BufWriter. * Fix tests. * Optimise BufWriter. * Remove more allocations. * Allow setting of buffer capacity. * Fix capacity size. * Fix capacity size. * Remove unneeded const notation. * Fix macro tests. * Slightly optimises BufWriter committing logic. * Optimise Implementation. * Move BufWriter to a separate file. * Additional Implementation Note. * Adjust API so it matches `std::channel::mpsc::channel`. * Fix feature soundness. * Make a compatibility layer on channels. * Fix clippy. * Fix feature soundness. * Fix CI. * Inlining. * Add documentation. * Punctuation. * Switch to tokio channel. * Remvoe pin-project. * Fix feature soundness. * Typo. * Move io to platform. * Tokio does not compile. * Fix workflow. * Restore wrongly removed docs. * Does tokio work? * Switch back to tokio. * Remove pin-project. * Use cargo resolver 2. * Add panic notice. * Update documentation. * Properties does not have to be send. * Fix capacity checking as pointed in the review. * Implementation order. * Update note.
29 lines
752 B
TOML
29 lines
752 B
TOML
[package]
|
|
name = "ssr_router"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
yew = { path = "../../packages/yew" }
|
|
function_router = { path = "../function_router" }
|
|
log = "0.4"
|
|
futures = "0.3"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wasm-bindgen-futures = "0.4"
|
|
wasm-logger = "0.2"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
tokio = { version = "1.15.0", features = ["full"] }
|
|
axum = "0.5"
|
|
tower = { version = "0.4", features = ["make"] }
|
|
tower-http = { version = "0.3", features = ["fs"] }
|
|
env_logger = "0.9"
|
|
clap = { version = "3.1.7", features = ["derive"] }
|
|
|
|
[features]
|
|
ssr = ["yew/ssr"]
|
|
hydration = ["yew/hydration"]
|