[package]
edition = "2024"
rust-version = "1.85"
name = "kaish-tools-git"
version = "0.8.1"
authors = ["Amy Tobey <tobert@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "kaish git tool bundle: the GitVfs backend and the git builtin (libgit2)"
homepage = "https://github.com/tobert/kaish"
readme = false
keywords = [
"shell",
"mcp",
"ai",
"agent",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/tobert/kaish"
resolver = "2"
[lib]
name = "kaish_tools_git"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.git2]
version = "0.20"
[dependencies.kaish-tool-api]
version = "0.8.1"
[dependencies.kaish-types]
version = "0.8.1"
features = []
[dependencies.kaish-vfs]
version = "0.8.1"
features = ["localfs"]
[dependencies.tokio]
version = "1"
features = [
"rt",
"io-util",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "deny"