[package]
edition = "2024"
name = "modde-core"
version = "0.1.0"
authors = ["Can H. Tartanoglu"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and logic for the modde mod manager"
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_core"
path = "src/lib.rs"
[[test]]
name = "concurrency_tests"
path = "tests/concurrency_tests.rs"
[[test]]
name = "e2e_advanced"
path = "tests/e2e_advanced.rs"
[[test]]
name = "e2e_deploy_pipeline"
path = "tests/e2e_deploy_pipeline.rs"
[[test]]
name = "error_edge_cases"
path = "tests/error_edge_cases.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "fingerprint_tests"
path = "tests/fingerprint_tests.rs"
[[test]]
name = "hash_edge_cases"
path = "tests/hash_edge_cases.rs"
[[test]]
name = "load_order_lock_tests"
path = "tests/load_order_lock_tests.rs"
[[test]]
name = "manifest_edge_cases"
path = "tests/manifest_edge_cases.rs"
[[test]]
name = "manifest_tests"
path = "tests/manifest_tests.rs"
[[test]]
name = "manifest_validation_tests"
path = "tests/manifest_validation_tests.rs"
[[test]]
name = "profile_tests"
path = "tests/profile_tests.rs"
[[test]]
name = "resolver_edge_cases"
path = "tests/resolver_edge_cases.rs"
[[test]]
name = "settings_integration"
path = "tests/settings_integration.rs"
[[test]]
name = "smoke_tests"
path = "tests/smoke_tests.rs"
[[test]]
name = "stock_edge_cases"
path = "tests/stock_edge_cases.rs"
[[test]]
name = "vfs_edge_cases"
path = "tests/vfs_edge_cases.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.dirs]
version = "6"
[dependencies.fomod-oxide]
version = "0.1"
features = ["json"]
[dependencies.git2]
version = "0.20"
[dependencies.petgraph]
version = "0.8"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
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.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[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.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"io-util",
"net",
"time",
"test-util",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winreg]
version = "0.55"
[lints.clippy.pedantic]
level = "warn"
priority = -1