[package]
edition = "2024"
name = "oliver"
version = "0.9.3"
authors = ["Saghm Rossi <mail@saghm.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight CLI mod development tool for Baldur's Gate 3 on Linux"
readme = "README.md"
keywords = [
"baldur",
"cli",
"larian",
"mods",
]
categories = [
"command-line-utilities",
"config",
"filesystem",
]
license = "Apache-2.0"
repository = "https://gitlab.com/saghm/xiba"
resolver = "2"
[features]
default = []
[lib]
name = "oliver"
path = "src/lib.rs"
[[bin]]
name = "oliver"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.larian-formats]
version = "0.9.3"
features = [
"zip",
"raw",
]
[dependencies.static_assertions_next]
version = "1.1.2"
[lints.clippy]
all = "deny"
cargo = "deny"
complexity = "deny"
correctness = "deny"
nursery = "deny"
pedantic = "deny"
perf = "deny"
style = "deny"
suspicious = "deny"
[lints.clippy.cargo-common-metadata]
level = "allow"
priority = 1
[lints.clippy.module-name-repetitions]
level = "allow"
priority = 1
[lints.clippy.multiple-crate-versions]
level = "allow"
priority = 1
[lints.clippy.must-use-candidate]
level = "allow"
priority = 1
[lints.clippy.redundant-pub-crate]
level = "allow"
priority = 1
[lints.clippy.too-many-arguments]
level = "allow"
priority = 1
[lints.rust]
unsafe_code = "forbid"