summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 5d8b8d98190d962913f6355763091b085f256525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "git-absorb"
version = "0.2.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 = "~0.6"
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"