[package]
edition = "2024"
rust-version = "1.93"
name = "modde-ui"
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 = "GUI application for modde"
documentation = "https://docs.rs/modde-ui"
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",
]
[package.metadata.deb]
name = "modde-ui"
maintainer = "Can H. Tartanoglu <caniko@codeberg.org>"
depends = "libc6, libgcc-s1, libssl3, libdbus-1-3, libsqlite3-0, libwayland-client0, libxkbcommon0, libvulkan1"
section = "utils"
priority = "optional"
assets = [
[
"../../target/release/modde-ui",
"usr/bin/",
"755",
],
[
"../../dist/modde-ui.desktop",
"usr/share/applications/com.tartanoglu.modde.desktop",
"644",
],
[
"../../dist/com.tartanoglu.modde.metainfo.xml",
"usr/share/metainfo/com.tartanoglu.modde.metainfo.xml",
"644",
],
[
"../../dist/com.tartanoglu.modde.png",
"usr/share/icons/hicolor/512x512/apps/com.tartanoglu.modde.png",
"644",
],
[
"../../LICENSE",
"usr/share/doc/modde-ui/copyright",
"644",
],
[
"../../README.md",
"usr/share/doc/modde-ui/README.md",
"644",
],
]
[lib]
name = "modde_ui"
path = "src/lib.rs"
[[bin]]
name = "modde-ui"
path = "src/main.rs"
[[test]]
name = "button_description_regression"
path = "tests/button_description_regression.rs"
[[test]]
name = "semantic_e2e_tests"
path = "tests/semantic_e2e_tests.rs"
[[test]]
name = "simulator_tests"
path = "tests/simulator_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.fomod-oxide]
version = "0.1"
features = ["json"]
[dependencies.iced]
version = "0.14"
features = [
"tokio",
"image",
"svg",
"advanced",
]
[dependencies.image]
version = "0.25"
[dependencies.modde-core]
version = "0.2.1"
[dependencies.modde-games]
version = "0.2.1"
[dependencies.modde-sources]
version = "0.2.1"
[dependencies.open]
version = "5"
[dependencies.reqwest]
version = "0.13.2"
features = [
"rustls",
"stream",
"json",
"form",
"cookies",
"blocking",
]
default-features = false
[dependencies.rfd]
version = "0.17"
[dependencies.serde_json]
version = "1"
[dependencies.smallvec]
version = "1"
features = ["serde"]
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"io-util",
"net",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.unicode-segmentation]
version = "1.12"
[dependencies.zip]
version = "8"
[dev-dependencies.iced_test]
version = "0.14"
[dev-dependencies.tempfile]
version = "3"
[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