submod 0.1.2

Git submodule manager with sparse checkout support using gitoxide
Documentation
[[bin]]
name = "submod"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.98"

[dependencies.bstr]
default-features = false
version = "1.12.0"

[dependencies.clap]
features = ["derive"]
version = "4.5.40"

[dependencies.git2]
optional = true
version = "0.20.2"

[dependencies.gix]
features = ["max-performance"]
version = "0.72.1"

[dependencies.gix-config]
features = ["serde"]
version = "0.45.1"

[dependencies.gix-submodule]
version = "0.19.1"

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

[dependencies.serde_json]
version = "1.0.140"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.toml]
version = "0.8.23"

[dependencies.toml_edit]
version = "0.22.27"

[dev-dependencies.serde_json]
version = "1.0.140"

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

[features]
default = ["git2-support"]
git2-support = ["git2"]

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

[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
too_many_lines = "allow"

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.complexity]
level = "warn"
priority = -1

[lints.clippy.correctness]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.clippy.perf]
level = "warn"
priority = -1

[lints.clippy.style]
level = "warn"
priority = -1

[lints.clippy.suspicious]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unreachable_code = "warn"
unsafe_code = "forbid"

[lints.rust.unused]
level = "warn"
priority = -1

[package]
authors = ["Adam Poulemanos <89049923+bashandbone@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "Git submodule manager with sparse checkout support using gitoxide"
documentation = "https://docs.rs/submod"
edition = "2024"
homepage = "https://github.com/bashandbone/submod"
keywords = ["git", "submodule", "gitoxide", "cli", "sparse-checkout"]
license = "MIT"
name = "submod"
readme = "README.md"
repository = "https://github.com/bashandbone/submod"
resolver = "3"
rust-version = "1.85"
version = "0.1.2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

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

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

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

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

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