update-version 1.0.4

A CLI tool for updating version numbers across multiple file types (Cargo.toml, package.json, tauri.conf.json) with git integration
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 = "update-version"
version = "1.0.4"
authors = ["Drew Chase"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for updating version numbers across multiple file types (Cargo.toml, package.json, tauri.conf.json) with git integration"
homepage = "https://github.com/Drew-Chase/update-version"
readme = "README.md"
keywords = [
    "version",
    "semver",
    "cli",
    "cargo",
    "tauri",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/Drew-Chase/update-version"

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

[[bin]]
name = "uv"
path = "src/main.rs"

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

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

[dependencies.anyhow]
version = "1.0.100"

[dependencies.clap]
version = "4.5.53"
features = [
    "default",
    "wrap_help",
    "derive",
]

[dependencies.dirs]
version = "6.0"

[dependencies.git2]
version = "0.20.3"

[dependencies.ignore]
version = "0.4"

[dependencies.log]
version = "0.4.29"

[dependencies.pretty_env_logger]
version = "0.5.0"

[dependencies.regex]
version = "1.12.2"
features = ["perf"]

[dependencies.semver]
version = "1.0.27"

[dependencies.thiserror]
version = "2.0.17"

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