-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (26 loc) · 895 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "yew-html-ext"
version = "0.2.0"
edition = "2021"
authors = ["Tim Kurdov <tim.kurdov@gmail.com>"]
repository = "https://github.com/schvv31n/yew-html-ext"
documentation = "https://docs.rs/yew-html-ext/latest/yew_html_ext/"
license = "MIT"
keywords = ["web", "wasm", "frontend", "webassembly", "yew"]
categories = ["gui", "web-programming", "wasm"]
description = "Handy syntactic extensions for Yew's HTML macros"
rust-version = "1.67.0"
readme = "README.md"
[lib]
proc-macro = true
[dependencies]
proc-macro-error = "1"
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "extra-traits", "visit-mut"] }
once_cell = "1"
# testing
[dev-dependencies]
rustversion = "1"
trybuild = { git = "https://github.com/its-the-shrimp/trybuild.git", branch = "improve-diff", features = ["diff"] }
yew = { git = "https://github.com/yewstack/yew.git", branch = "master" }