modde-games 0.2.1

Game plugin implementations for modde
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.93"
name = "modde-games"
version = "0.2.1"
authors = ["Can H. Tartanoglu"]
build = false
include = [
    "../../LICENSE",
    "../../README.md",
    "CHANGELOG.md",
    "Cargo.toml",
    "src/**",
    "tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Game plugin implementations for modde"
documentation = "https://docs.rs/modde-games"
readme = "README.md"
keywords = [
    "modding",
    "mod-manager",
    "nexus-mods",
    "wabbajack",
    "game-mods",
]
categories = [
    "command-line-utilities",
    "game-development",
]
license = "GPL-3.0-only"
repository = "https://codeberg.org/caniko/rs-modde"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[lib]
name = "modde_games"
path = "src/lib.rs"

[[test]]
name = "archive_index_tests"
path = "tests/archive_index_tests.rs"

[[test]]
name = "archives_tests"
path = "tests/archives_tests.rs"

[[test]]
name = "bethesda_deploy_tests"
path = "tests/bethesda_deploy_tests.rs"

[[test]]
name = "bethesda_tests"
path = "tests/bethesda_tests.rs"

[[test]]
name = "classify_mod_tests"
path = "tests/classify_mod_tests.rs"

[[test]]
name = "cyberpunk_tests"
path = "tests/cyberpunk_tests.rs"

[[test]]
name = "diagnostics_tests"
path = "tests/diagnostics_tests.rs"

[[test]]
name = "fomod_tests"
path = "tests/fomod_tests.rs"

[[test]]
name = "game_plugin_tests"
path = "tests/game_plugin_tests.rs"

[[test]]
name = "generic_game_tests"
path = "tests/generic_game_tests.rs"

[[test]]
name = "generic_loader_conflict_tests"
path = "tests/generic_loader_conflict_tests.rs"

[[test]]
name = "generic_loader_tests"
path = "tests/generic_loader_tests.rs"

[[test]]
name = "high_impact_games_tests"
path = "tests/high_impact_games_tests.rs"

[[test]]
name = "ini_comprehensive_tests"
path = "tests/ini_comprehensive_tests.rs"

[[test]]
name = "ini_edge_cases"
path = "tests/ini_edge_cases.rs"

[[test]]
name = "ini_tweaks_tests"
path = "tests/ini_tweaks_tests.rs"

[[test]]
name = "optiscaler_bad_sidecar"
path = "tests/optiscaler_bad_sidecar.rs"

[[test]]
name = "optiscaler_override_logs"
path = "tests/optiscaler_override_logs.rs"

[[test]]
name = "optiscaler_user_profiles"
path = "tests/optiscaler_user_profiles.rs"

[[test]]
name = "plugins_txt_edge_cases"
path = "tests/plugins_txt_edge_cases.rs"

[[test]]
name = "registry_tests"
path = "tests/registry_tests.rs"

[[test]]
name = "starfield_tests"
path = "tests/starfield_tests.rs"

[[test]]
name = "ue4_tests"
path = "tests/ue4_tests.rs"

[dependencies.anyhow]
version = "1"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.fomod-oxide]
version = "0.1"
features = ["json"]

[dependencies.futures]
version = "0.3"

[dependencies.modde-core]
version = "0.2.1"

[dependencies.open]
version = "5"

[dependencies.reqwest]
version = "0.13.2"
features = [
    "rustls",
    "stream",
    "json",
    "form",
    "cookies",
]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml_ng]
version = "0.10"

[dependencies.smallvec]
version = "1"
features = ["serde"]

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "fs",
    "io-util",
    "net",
    "time",
]

[dependencies.toml]
version = "1.1"

[dependencies.tracing]
version = "0.1"

[dependencies.which]
version = "8"

[dependencies.xxhash-rust]
version = "0.8"
features = [
    "xxh3",
    "xxh64",
]

[dependencies.zip]
version = "8"

[dev-dependencies.pretty_assertions]
version = "1"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tracing-test]
version = "0.2"
features = ["no-env-filter"]

[lints.clippy]
assigning_clones = "allow"
case_sensitive_file_extension_comparisons = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
default_trait_access = "allow"
doc_overindented_list_items = "allow"
empty_line_after_doc_comments = "allow"
explicit_counter_loop = "allow"
format_push_string = "allow"
if_same_then_else = "allow"
implicit_hasher = "allow"
items_after_statements = "allow"
large_enum_variant = "allow"
large_stack_arrays = "allow"
manual_let_else = "allow"
many_single_char_names = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
redundant_guards = "allow"
result_large_err = "allow"
similar_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
type_complexity = "allow"
unnecessary_get_then_check = "allow"
unnecessary_sort_by = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
unused_async = "allow"
unused_self = "allow"
used_underscore_binding = "allow"

[lints.clippy.pedantic]
level = "warn"
priority = -1