dnf-repofile 0.1.3

Pure Rust library for parsing, managing, validating, diffing, and rendering DNF/YUM .repo configuration files
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.95"
name = "dnf-repofile"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust library for parsing, managing, validating, diffing, and rendering DNF/YUM .repo configuration files"
documentation = "https://docs.rs/dnf-repofile"
readme = "README.md"
keywords = [
    "dnf",
    "yum",
    "rpm",
    "repository",
    "parser",
]
categories = [
    "config",
    "parsing",
]
license = "MIT"
repository = "https://github.com/franckcl1989/dnf-repofile"

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

[[example]]
name = "parse-and-modify"
path = "examples/parse-and-modify.rs"

[[example]]
name = "reposdir-management"
path = "examples/reposdir-management.rs"

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.camino]
version = "1"

[dependencies.derive_more]
version = "1"
features = [
    "display",
    "as_ref",
    "deref",
    "from",
]

[dependencies.indexmap]
version = "2"

[dependencies.nutype]
version = "0.6"
features = ["regex"]

[dependencies.regex]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.url]
version = "2"
features = ["serde"]

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