mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* Bump indexmap from 1.9.3 to 2.0.0 Bumps [indexmap](https://github.com/bluss/indexmap) from 1.9.3 to 2.0.0. - [Changelog](https://github.com/bluss/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/bluss/indexmap/compare/1.9.3...2.0.0) --- updated-dependencies: - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update dependency minimum version * clippy * Bump MSRV to 1.64 * more clippy * Update action that fails (probably outdated) * Bump implicit-clone to 0.3.8 * Forgot to bump MSRV in some places * Forgot to update setup-chromedriver in one place * Bump implicit-clone to 0.4.0 * Update stderr files * clippy --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
32 lines
791 B
TOML
32 lines
791 B
TOML
[package]
|
|
name = "yew-macro"
|
|
version = "0.20.0"
|
|
edition = "2021"
|
|
authors = ["Justin Starry <justin@yew.rs>"]
|
|
repository = "https://github.com/yewstack/yew"
|
|
homepage = "https://github.com/yewstack/yew"
|
|
documentation = "https://docs.rs/yew-macro/"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["web", "wasm", "frontend", "webasm", "webassembly"]
|
|
categories = ["gui", "web-programming", "wasm"]
|
|
description = "A framework for making client-side single-page apps"
|
|
rust-version = "1.64.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
boolinator = "2"
|
|
proc-macro-error = "1"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full", "extra-traits", "visit-mut"] }
|
|
once_cell = "1"
|
|
prettyplease = "0.2"
|
|
|
|
# testing
|
|
[dev-dependencies]
|
|
rustversion = "1"
|
|
trybuild = "1"
|
|
yew = { path = "../yew" }
|