[package]
edition = "2021"
name = "loq_core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for loq - enforce file size constraints"
readme = false
license = "MIT"
repository = "https://github.com/jakekaplan/loq"
[lib]
name = "loq_core"
path = "src/lib.rs"
[dependencies.globset]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_ignored]
version = "0.1"
[dependencies.strsim]
version = "0.11"
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
dbg_macro = "warn"
exit = "warn"
get_unwrap = "warn"
missing_const_for_fn = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "warn"
needless_pass_by_value = "allow"
print_stderr = "warn"
print_stdout = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_clone = "warn"
rest_pat_in_fully_bound_structs = "warn"
verbose_file_reads = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"