# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "raptorq" version = "2.0.0" authors = ["Christopher Berner "] description = "RaptorQ (RFC6330)" homepage = "https://github.com/cberner/raptorq" readme = "README.md" license = "Apache-2.0" repository = "https://github.com/cberner/raptorq" [profile.release] lto = false debug = true [lib] crate-type = ["lib"] [[example]] name = "main" required-features = ["std"] [[bench]] name = "codec_benchmark" harness = false required-features = ["benchmarking"] [[bench]] name = "matrix_sparsity" harness = false required-features = ["benchmarking"] [[bench]] name = "encode_benchmark" harness = false [[bench]] name = "decode_benchmark" harness = false [dependencies.pyo3] version = "0.20" features = [ "extension-module", "abi3-py37", ] optional = true [dependencies.serde] version = "1.0.102" features = [ "std", "derive", ] optional = true [dev-dependencies.criterion] version = "0.3" [dev-dependencies.primal] version = "0.3" [dev-dependencies.rand] version = "0.8" [dev-dependencies.threadpool] version = "1.7" [features] benchmarking = ["std"] default = ["std"] python = [ "pyo3", "std", ] serde_support = [ "serde", "std", ] std = []