git-absorb/Cargo.toml

37 lines
647 B
TOML
Raw Normal View History

2018-02-15 07:38:37 +00:00
[package]
name = "git-absorb"
2020-09-28 23:14:29 +00:00
version = "0.6.4"
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"
edition = "2018"
2018-03-11 07:25:33 +00:00
include = [
"**/*.rs",
"Cargo.*",
"*.md",
]
[[bin]]
name = "git-absorb"
path = "src/main.rs"
2018-02-15 07:38:37 +00:00
[dependencies.git2]
2020-10-07 05:59:46 +00:00
version = "~0.13"
default-features = false
2018-02-15 07:38:37 +00:00
[dependencies]
2018-02-15 19:47:42 +00:00
clap = "~2.30"
2020-05-24 02:27:53 +00:00
slog = "~2.5"
slog-term = "~2.6"
2020-05-24 02:27:53 +00:00
slog-async = "~2.5"
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"