gixor 0.5.2

An API for managing .gitignore 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 = "2024"
name = "gixor"
version = "0.5.2"
authors = ["Haruaki Tamada"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An API for managing .gitignore files."
homepage = "https://tamada.github.io/gixor/"
readme = "README.md"
keywords = [
    "gitignore",
    "gitignore-generator",
    "git",
    "gitignore-files",
    "gitignore-templates",
]
categories = [
    "config",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/tamada/gixor"

[features]
default = [
    "local",
    "usegix",
]
embedded = []
local = [
    "dep:dirs",
    "dep:ignore",
]
usegix = [
    "local",
    "dep:gix",
]

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

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
required-features = ["local"]

[[example]]
name = "custom_config"
path = "examples/custom_config.rs"
required-features = ["local"]

[[test]]
name = "clone_and_find"
path = "tests/clone_and_find.rs"
required-features = ["local"]

[[test]]
name = "dump"
path = "tests/dump.rs"
required-features = ["local"]

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

[[test]]
name = "repositories"
path = "tests/repositories.rs"
required-features = ["local"]

[dependencies.dirs]
version = "6.0.0"
optional = true

[dependencies.gix]
version = "0.85.0"
features = [
    "blocking-http-transport-reqwest-rust-tls",
    "blocking-network-client",
    "merge",
    "tree-editor",
]
optional = true

[dependencies.hex]
version = "0.4.3"

[dependencies.ignore]
version = "0.4.31"
optional = true

[dependencies.log]
version = "0.4.33"

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

[dependencies.serde_json]
version = "1.0.151"

[dev-dependencies.reqwest]
version = "0.13"
features = ["rustls"]
default-features = false

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

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]