fomod-oxide 0.1.0

FOMOD mod installer XML parser and evaluator
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 = "2021"
rust-version = "1.70"
name = "fomod-oxide"
version = "0.1.0"
authors = ["Can H. Tartanoglu"]
build = false
exclude = [
    ".envrc",
    ".gitignore",
    "flake.nix",
    "flake.lock",
    "/result",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FOMOD mod installer XML parser and evaluator"
readme = "README.md"
keywords = [
    "fomod",
    "modding",
    "nexus-mods",
    "game-mods",
]
categories = [
    "parser-implementations",
    "game-development",
]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/caniko/rs-fomod-oxide"

[features]
cli = [
    "nix",
    "json",
    "ron",
    "dep:clap",
]
default = []
json = ["dep:serde_json"]
nix = ["dep:ronix"]
ron = ["dep:ron"]

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

[[bin]]
name = "fomod-oxide"
path = "src/main.rs"
required-features = ["cli"]

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

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

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

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

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

[dependencies.base64]
version = "0.22"

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]

[dependencies.ron]
version = "0.12"
optional = true

[dependencies.ronix]
version = "0.1"
optional = true

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

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.sha2]
version = "0.11"

[dependencies.thiserror]
version = "2"

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

[dev-dependencies.ronix]
version = "0.1"