[package]
edition = "2024"
rust-version = "1.85"
name = "git-side"
version = "0.2.3"
authors = ["MiPnamic <mipnamic@mipnamic.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Git subcommand that versions files and directories that should not live in the main repository, using a per-project bare repository invisible to Git."
readme = "README.md"
keywords = [
"git",
"version-control",
"cli",
"dotfiles",
"side-repo",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Solexma/git-side"
[lib]
name = "git_side"
path = "src/lib.rs"
[[bin]]
name = "git-side"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.56"
features = ["derive"]
[dependencies.colored]
version = "3.1.1"
[dependencies.dirs]
version = "6.0.0"
[dependencies.thiserror]
version = "2.0.18"
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"