git-absorb/Cargo.toml
tummychow d4656f4715 bump to 0.3.0
"the tool now works for folders below the repo root" is definitely
worthy of a new version
2018-11-07 21:35:14 -08:00

35 lines
629 B
TOML

[package]
name = "git-absorb"
version = "0.3.0"
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"
include = [
"**/*.rs",
"Cargo.*",
"*.md",
]
[[bin]]
name = "git-absorb"
path = "src/main.rs"
[dependencies.git2]
version = "~0.7"
default-features = false
[dependencies]
clap = "~2.30"
slog = "~2.1"
slog-term = "~2.3"
slog-async = "~2.2"
failure = "~0.1"
memchr = "~2.0"
[dev-dependencies]
tempdir = "~0.3"