mirror of
https://github.com/tummychow/git-absorb
synced 2024-11-15 00:27:38 +00:00
36 lines
647 B
TOML
36 lines
647 B
TOML
[package]
|
|
name = "git-absorb"
|
|
version = "0.6.6"
|
|
|
|
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 = "2018"
|
|
|
|
include = [
|
|
"**/*.rs",
|
|
"Cargo.*",
|
|
"*.md",
|
|
]
|
|
|
|
[[bin]]
|
|
name = "git-absorb"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies.git2]
|
|
version = "~0.13"
|
|
default-features = false
|
|
|
|
[dependencies]
|
|
clap = "~2.33"
|
|
slog = "~2.5"
|
|
slog-term = "~2.6"
|
|
slog-async = "~2.5"
|
|
memchr = "~2.3"
|
|
anyhow = "~1.0"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "~3.1"
|