[package]
edition = "2024"
name = "git-checkout-interactive"
version = "1.0.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "cli to switch between locally checked out branches interactively"
readme = "README.MD"
keywords = [
"git",
"checkout",
"branch",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/Mike-Neto/cgi"
[lib]
name = "git_checkout_interactive"
path = "src/lib.rs"
[[bin]]
name = "gci"
path = "src/main.rs"
[dependencies.dialoguer]
version = "0.12.0"
[dependencies.git2]
version = "0.20.4"
default-features = false
[lints.clippy]
blanket_clippy_restriction_lints = "allow"
implicit_return = "allow"
question_mark_used = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "warn"
priority = -1