mirror of
https://github.com/yewstack/yew.git
synced 2026-02-01 17:26:28 +00:00
35 lines
886 B
TOML
35 lines
886 B
TOML
[package]
|
|
name = "yew"
|
|
version = "0.4.0"
|
|
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
|
repository = "https://github.com/DenisKolodin/yew"
|
|
homepage = "https://github.com/DenisKolodin/yew"
|
|
documentation = "https://docs.rs/yew/"
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
keywords = ["web", "asmjs", "webasm", "javascript"]
|
|
categories = ["gui", "web-programming"]
|
|
description = "A framework for making client-side single-page apps"
|
|
|
|
[dependencies]
|
|
failure = "0.1"
|
|
log = "0.4"
|
|
http = "0.1"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
stdweb = "0.4"
|
|
toml = { version = "0.4", optional = true }
|
|
serde_yaml = { version = "0.7", optional = true }
|
|
rmp-serde = { version = "0.13.7", optional = true }
|
|
serde_cbor = { version = "0.8.2", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_derive = "1"
|
|
|
|
[features]
|
|
default = []
|
|
web_test = []
|
|
yaml = ["serde_yaml"]
|
|
msgpack = ["rmp-serde"]
|
|
cbor = ["serde_cbor"]
|