hyperjson 0.2.3

A hyper-fast Python module for reading/writing JSON data
Documentation
[package]
name = "hyperjson"
version = "0.2.3"
authors = ["Matthias Endler <matthias-endler@gmx.net>"]
description = "A hyper-fast Python module for reading/writing JSON data"
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/mre/hyperjson"
homepage = "https://github.com/mre/hyperjson"
readme = "README.md"
keywords = ["fast", "json", "python"]

[package.metadata.maturin]
classifier = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: Apache Software License",
    "License :: OSI Approved",
    "Operating System :: MacOS",
    "Operating System :: Microsoft :: Windows",
    "Operating System :: POSIX :: Linux",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.5",
    "Programming Language :: Python :: 3.6",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python",
    "Programming Language :: Rust",
]

[dependencies]
serde_json = "1.0.42"
failure = "0.1.6"
serde = "1.0.103"
serde_derive = "1.0.103"
pyo3 = "0.8.3"

[lib]
name = "hyperjson"
crate-type = ["rlib", "cdylib"]

[features]
# We must make this feature optional to build binaries such as the profiling crate
default = ["pyo3/extension-module"]

[workspace]
members = [ "profiling" ]

[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = true
opt-level = 3