mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
- Updated bincode dependency to 2.0.0-rc.3 in yew and yew-agent packages - Migrated from bincode::serialize/deserialize to bincode::serde::encode_to_vec/decode_from_slice - Updated test expectations for changed base64 encoding format - Used 2.0.0-rc.3 to maintain MSRV compatibility with Rust 1.78.0
41 lines
938 B
TOML
41 lines
938 B
TOML
[package]
|
|
name = "yew-agent"
|
|
version = "0.3.0"
|
|
authors = ["Hamza <muhammadhamza1311@gmail.com>"]
|
|
repository = "https://github.com/yewstack/yew"
|
|
homepage = "https://yew.rs"
|
|
documentation = "https://docs.rs/yew/"
|
|
edition = "2021"
|
|
readme = "../../README.md"
|
|
description = "Agents for Yew"
|
|
license = "MIT OR Apache-2.0"
|
|
rust-version = "1.84.0"
|
|
|
|
[dependencies]
|
|
yew = { version = "0.21.0", path = "../yew" }
|
|
wasm-bindgen = "0.2"
|
|
js-sys = "0.3"
|
|
pinned = "0.1.0"
|
|
thiserror = "1.0.37"
|
|
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
|
|
wasm-bindgen-futures = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
futures = "0.3"
|
|
yew-agent-macro = { version = "0.2", path = "../yew-agent-macro" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
"Blob",
|
|
"BlobPropertyBag",
|
|
"DedicatedWorkerGlobalScope",
|
|
"MessageEvent",
|
|
"Url",
|
|
"Worker",
|
|
"WorkerOptions",
|
|
"WorkerType"
|
|
]
|
|
|
|
[dev-dependencies]
|
|
serde = "1.0.218"
|