forked from koute/stdweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (40 loc) · 1.59 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "stdweb"
version = "0.4.10"
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]
discard = "1.0.3"
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
futures-core-preview = { version = "0.3.0-alpha.7", optional = true }
futures-channel-preview = { version = "0.3.0-alpha.7", optional = true }
futures-util-preview = { version = "0.3.0-alpha.7", optional = true }
futures-executor-preview = { version = "0.3.0-alpha.7", optional = true }
stdweb-derive = { version = "= 0.5.1", path = "stdweb-derive" }
stdweb-internal-macros = { version = "= 0.2.2", path = "stdweb-internal-macros" }
stdweb-internal-runtime = { version = "0.1", path = "stdweb-internal-runtime" }
[dev-dependencies]
serde_json = "1"
serde_derive = "1"
[build-dependencies]
rustc_version = "0.2"
[features]
default = ["serde", "serde_json"]
nightly = []
web_test = []
futures-support = ["futures-core-preview", "futures-channel-preview", "futures-util-preview", "futures-executor-preview"]
experimental_features_which_may_break_on_minor_version_bumps = ["futures-support"]
"docs-rs" = []
[package.metadata.docs.rs]
features = ["serde", "serde_json", "futures-support", "docs-rs"]
all-features = false
no-default-features = true