[package]
edition = "2021"
rust-version = "1.74"
name = "flac-io"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust FLAC decoder and encoder for reading and writing lossless audio samples"
documentation = "https://docs.rs/flac-io"
readme = "README.md"
keywords = [
"flac",
"audio",
"lossless",
"codec",
"steganography",
]
categories = [
"multimedia::audio",
"encoding",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/elementmerc/flac-io"
[lib]
name = "flac_io"
path = "src/lib.rs"
[[example]]
name = "smoke"
path = "examples/smoke.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial.rs"
[[test]]
name = "corner_cases"
path = "tests/corner_cases.rs"
[[test]]
name = "decode_fixtures"
path = "tests/decode_fixtures.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "extreme"
path = "tests/extreme.rs"
[[test]]
name = "ogg"
path = "tests/ogg.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "real_world"
path = "tests/real_world.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "security"
path = "tests/security.rs"