-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "libxaac-sys"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
authors = ["Yehor Smoliakov <egorsmkv@gmail.com>"]
description = "Rust FFI bindings to the libxaac AAC/xHE-AAC encoder and decoder library"
readme = "README.md"
license = "Apache-2.0"
documentation = "https://docs.rs/libxaac-sys"
keywords = ["aac", "xhe-aac", "ffi", "bindings", "audio"]
categories = ["external-ffi-bindings", "multimedia::audio"]
links = "xaac"
include = [
"Cargo.toml",
"README.md",
"build.rs",
"wrapper.h",
"examples/**",
"src/**",
"libxaac/**",
]
[features]
default = ["bundled", "static"]
bundled = []
static = []
dynamic = []
[dependencies]
[build-dependencies]
bindgen = "0.72"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"