-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
59 lines (52 loc) · 1.13 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
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "wolfram_alpha"
version = "0.4.0"
authors = ["Nikita Pekin <[email protected]>"]
description = "A library providing Rust bindings for the Wolfram|Alpha API"
repository = "https://github.com/indiv0/wolfram-alpha-rs"
documentation = "https://indiv0.github.io/wolfram-alpha-rs/wolfram_alpha/"
readme = "README.md"
keywords = [
"wolfram",
"alpha",
"async",
"API",
"library",
]
license = "MIT/Apache-2.0"
include = [
"build.rs",
"CHANGELOG.md",
"Cargo.toml",
"LICENSE-MIT",
"LICENSE-APACHE",
"README.md",
"src/**/*.rs",
]
build = "build.rs"
[build-dependencies.serde_codegen]
optional = true
version = "0.8.23"
[dependencies]
futures = "0.1.17"
hyper = "0.11.7"
log = "0.3.6"
serde = "0.8.23"
serde_xml = "0.8.1"
tokio-core = "0.1.10"
[dependencies.clippy]
optional = true
version = "0.0"
[dependencies.serde_derive]
optional = true
version = "0.8.23"
[dependencies.url]
features = ["serde"]
version = "1.6.0"
[dev-dependencies]
hyper-tls = "0.1.2"
[features]
default = ["with-syntex"]
nightly = ["serde_derive"]
nightly-testing = ["clippy", "nightly"]
with-syntex = ["serde_codegen"]