forked from koute/stdweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (28 loc) · 1006 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
30
31
32
33
34
[package]
name = "stdweb"
version = "0.4.1"
authors = ["Jan Bujak <[email protected]>"]
repository = "https://github.com/koute/stdweb"
homepage = "https://github.com/koute/stdweb"
documentation = "https://docs.rs/stdweb/*/stdweb/"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["web", "asmjs", "webasm", "javascript"]
categories = ["api-bindings", "gui", "web-programming"]
description = "A standard library for the client-side Web"
build = "build.rs"
[dependencies]
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
futures = { version = "0.1.18", optional = true }
stdweb-derive = { version = "0.4", path = "stdweb-derive" }
[dev-dependencies]
serde_json = "1"
serde_derive = "1"
[features]
default = ["serde", "serde_json", "futures"]
nightly = []
web_test = []
experimental_features_which_may_break_on_minor_version_bumps = []
[target.wasm32-unknown-unknown.dependencies]
stdweb-internal-macros = { version = "0.1", path = "stdweb-internal-macros" }