wolfram_alpha 0.1.0

A library providing Rust bindings for the Wolfram|Alpha API
Documentation
[package]
name = "wolfram_alpha"
version = "0.1.0"
authors = ["Nikita Pekin <contact@nikitapek.in>"]
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",
    "wolframalpha",
    "API",
    "hyper",
    "web",
    "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.7.10"

[dependencies]
log = "0.3.6"
serde = "0.7.10"
serde_xml = "0.7.0"

[dependencies.clippy]
optional = true
version = "0.0"

[dependencies.hyper]
optional = true
version = "0.9.5"

[dependencies.serde_macros]
optional = true
version = "0.7.10"

[dependencies.url]
features = ["serde"]
version = "1.1.1"

[features]
default = ["hyper", "with-syntex"]
nightly = ["serde_macros"]
nightly-testing = ["clippy", "nightly"]
with-syntex = ["serde_codegen"]