[package]
edition = "2024"
rust-version = "1.85"
name = "lc-framework-sys"
version = "0.1.0+lc.2025"
authors = ["Juniper Tyree <juniper.tyree@helsinki.fi>"]
build = "build.rs"
links = "lc"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level Rust bindings to the LC compression framework"
readme = "README.md"
keywords = [
"lc",
"framework",
"bindgen",
"compression",
"encoding",
]
categories = [
"api-bindings",
"compression",
"encoding",
]
license = "BSD-3-Clause"
repository = "https://github.com/juntyr/lc-framework-rs"
resolver = "2"
[lib]
name = "lc_framework_sys"
path = "src/lib.rs"
[dependencies.lc-framework-src]
version = "0.1"
default-features = false
[build-dependencies.bindgen]
version = "0.72"
features = ["runtime"]
default-features = false
[build-dependencies.cc]
version = "1.2"
default-features = false
[lints.clippy]
cargo_common_metadata = "warn"
expect_used = "warn"
indexing_slicing = "warn"
module_name_repetitions = "allow"
multiple_crate_versions = "warn"
panic = "warn"
todo = "warn"
unimplemented = "warn"
unreachable = "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.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
unstable_features = "forbid"
unused_crate_dependencies = "warn"