git-absorb/Cargo.toml

36 lines
629 B
TOML
Raw Normal View History

2018-02-15 07:38:37 +00:00
[package]
name = "git-absorb"
version = "0.4.0"
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"
include = [
"**/*.rs",
"Cargo.*",
"*.md",
]
[[bin]]
name = "git-absorb"
path = "src/main.rs"
2018-02-15 07:38:37 +00:00
[dependencies.git2]
version = "~0.7"
default-features = false
2018-02-15 07:38:37 +00:00
[dependencies]
2018-02-15 19:47:42 +00:00
clap = "~2.30"
2018-02-15 21:36:35 +00:00
slog = "~2.1"
slog-term = "~2.3"
slog-async = "~2.2"
failure = "~0.1"
2018-03-11 06:31:18 +00:00
memchr = "~2.0"
2018-02-16 00:11:33 +00:00
[dev-dependencies]
tempdir = "~0.3"