git-absorb/Cargo.toml

40 lines
768 B
TOML
Raw Normal View History

2018-02-15 07:38:37 +00:00
[package]
name = "git-absorb"
2024-07-08 00:04:20 +00:00
version = "0.6.15"
2018-03-11 07:25:33 +00:00
authors = ["Stephen Jung <tummychow511@gmail.com>"]
description = "git commit --fixup, but automatic"
homepage = "https://github.com/tummychow/git-absorb"
repository = "https://github.com/tummychow/git-absorb"
readme = "README.md"
license = "BSD-3-Clause"
edition = "2021"
2018-03-11 07:25:33 +00:00
include = [
"**/*.rs",
"Cargo.*",
"*.md",
]
rust-version = "1.74.1"
2018-03-11 07:25:33 +00:00
[[bin]]
name = "git-absorb"
path = "src/main.rs"
2018-02-15 07:38:37 +00:00
[dependencies.git2]
2024-07-07 23:50:35 +00:00
version = "0.19"
default-features = false
2018-02-15 07:38:37 +00:00
[dependencies]
clap = { version = "4", features = ["cargo", "wrap_help", "derive"] }
clap_complete = "4"
2024-03-24 10:44:59 +00:00
clap_complete_nushell = "4"
slog = "2.5"
slog-term = "2.6"
slog-async = "2.5"
memchr = "2.3"
anyhow = "1.0"
2018-02-16 00:11:33 +00:00
[dev-dependencies]
tempfile = "3.1"