[package]
edition = "2024"
rust-version = "1.85"
name = "lc-framework-src"
version = "0.1.0+lc.2025"
authors = ["Juniper Tyree <juniper.tyree@helsinki.fi>"]
build = "build.rs"
links = "lc-src"
exclude = [
"/LC-framework/scripts",
"/LC-framework/LC.svg",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Source files for the LC compression framework"
readme = "README.md"
keywords = [
"lc",
"framework",
"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_src"
path = "src/lib.rs"
[build-dependencies.fs_extra]
version = "1.3.0"
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"