[package]
edition = "2024"
name = "modde-games"
version = "0.1.0"
authors = ["Can H. Tartanoglu"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Game plugin implementations for modde"
readme = false
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"
[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 = "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 = "plugins_txt_edge_cases"
path = "tests/plugins_txt_edge_cases.rs"
[[test]]
name = "starfield_tests"
path = "tests/starfield_tests.rs"
[[test]]
name = "ue4_tests"
path = "tests/ue4_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.fomod-oxide]
version = "0.1"
features = ["json"]
[dependencies.modde-core]
version = "0.1"
[dependencies.open]
version = "5"
[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.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"io-util",
"net",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.which]
version = "7"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.pedantic]
level = "warn"
priority = -1