git-absorb/Cargo.toml
Nickolay Ponomarev 8a667a11c7 Update git2 to 0.9 and refresh Cargo.lock
I thought I needed it for Commit::parent_count(); turns out that I
didn't, but since I've tested the update anyway I thought I'd include it.

I had to delete Cargo.lock and let cargo regenerate it, since otherwise
I got an error that I think was fixed in a newer bitflags version:
https://github.com/bitflags/bitflags/pull/165
2019-07-15 04:02:08 +03:00

36 lines
646 B
TOML

[package]
name = "git-absorb"
version = "0.4.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"
edition = "2018"
include = [
"**/*.rs",
"Cargo.*",
"*.md",
]
[[bin]]
name = "git-absorb"
path = "src/main.rs"
[dependencies.git2]
version = "~0.9"
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"