[package]
edition = "2024"
rust-version = "1.85"
name = "libxaac-sys"
version = "0.1.0"
authors = ["Yehor Smoliakov <egorsmkv@gmail.com>"]
build = "build.rs"
links = "xaac"
include = [
"Cargo.toml",
"README.md",
"build.rs",
"wrapper.h",
"examples/**",
"src/**",
"libxaac/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust FFI bindings to the libxaac AAC/xHE-AAC encoder and decoder library"
documentation = "https://docs.rs/libxaac-sys"
readme = "README.md"
keywords = [
"aac",
"xhe-aac",
"ffi",
"bindings",
"audio",
]
categories = [
"external-ffi-bindings",
"multimedia::audio",
]
license = "Apache-2.0"
[features]
bundled = []
default = [
"bundled",
"static",
]
dynamic = []
static = []
[lib]
name = "libxaac_sys"
path = "src/lib.rs"
[[example]]
name = "sample"
path = "examples/sample.rs"
[dependencies]
[build-dependencies.bindgen]
version = "0.72"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"