File: Cargo.toml.orig

package info (click to toggle)
rust-stdweb 0.4.13-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,200 kB
  • sloc: sh: 102; makefile: 2
file content (47 lines) | stat: -rw-r--r-- 1,632 bytes parent folder | download
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.13"
authors = ["Jan Bujak <j@exia.io>"]
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.5", 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