[package]
edition = "2024"
rust-version = "1.85"
name = "bela-sys"
version = "0.0.1"
authors = ["Akiomi Kamakura <akiomik@gmail.com>"]
build = "build.rs"
links = "bela"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Raw FFI bindings to the Bela core API (libbela) for Bela Gem"
readme = "README.md"
keywords = [
"bela",
"audio",
"embedded",
"realtime",
"dsp",
]
categories = [
"external-ffi-bindings",
"embedded",
"multimedia::audio",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/akiomik/bela-rs"
[package.metadata.docs.rs]
default-target = "aarch64-unknown-linux-gnu"
targets = ["aarch64-unknown-linux-gnu"]
[lib]
name = "bela_sys"
path = "src/lib.rs"
[build-dependencies]
[lints.clippy]
absolute_paths = "warn"
allow_attributes = "allow"
allow_attributes_without_reason = "warn"
cognitive_complexity = "warn"
exit = "warn"
expect_used = "allow"
missing_assert_message = "warn"
mod_module_files = "warn"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
panic = "warn"
similar_names = "allow"
str_to_string = "warn"
string_add = "warn"
unwrap_used = "warn"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"