raptorq/Cargo.toml
2021-10-21 18:47:08 -07:00

60 lines
1.3 KiB
TOML

[package]
name = "raptorq"
description = "RaptorQ (RFC6330)"
license = "Apache-2.0"
homepage = "https://github.com/cberner/raptorq"
repository = "https://github.com/cberner/raptorq"
readme = "README.md"
version = "1.6.4"
edition = "2021"
rust-version = "1.56"
authors = ["Christopher Berner <christopherberner@gmail.com>"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
serde = {version = "1.0.102", features=["std", "derive"], optional = true}
pyo3 = {version = "0.14", features=["extension-module", "abi3-py36"], optional = true }
[dev-dependencies]
criterion = "0.3"
primal = "0.3"
rand = "0.8"
threadpool = "1.7"
[[bench]]
name = "codec_benchmark"
harness = false
[[bench]]
name = "matrix_sparsity"
harness = false
[[bench]]
name = "encode_benchmark"
harness = false
[[bench]]
name = "decode_benchmark"
harness = false
[profile.release]
debug = true
lto = false
[features]
benchmarking = []
use_neon = []
python = ["pyo3"]
serde_support = ["serde"]
[package.metadata.maturin]
requires-python = ">= 3.6"
classifier = ["Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Rust"]