[package]
name = "cpython-json"
version = "0.2.0"
authors = ["Iliana Weller <ilianaw@buttslol.net>"]
exclude = [".gitignore", ".travis.yml"]
description = "Converts native Python objects into serde_json Values and back again"
documentation = "https://docs.rs/cpython-json"
readme = "README.md"
keywords = ["python", "json"]
license = "MIT/Apache-2.0"
repository = "https://github.com/ilianaw/rust-cpython-json"
[dependencies.cpython]
version = "0.1"
default-features = false
[dependencies.quick-error]
version = "1.2"
[dependencies.serde_json]
version = "1.0"
[features]
python3-sys = ["cpython/python3-sys"]
default = ["python3-sys"]
python27-sys = ["cpython/python27-sys"]
[badges.travis-ci]
branch = "master"
repository = "ilianaw/rust-cpython-json"