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"
|
2019-07-15 00:19:31 +00:00
|
|
|
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
|
|
|
|
2018-11-08 05:26:18 +00:00
|
|
|
[dependencies.git2]
|
2020-10-07 05:59:46 +00:00
|
|
|
version = "~0.13"
|
2018-11-08 05:26:18 +00:00
|
|
|
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"
|
2020-05-29 18:43:40 +00:00
|
|
|
slog-term = "~2.6"
|
2020-05-24 02:27:53 +00:00
|
|
|
slog-async = "~2.5"
|
2018-02-16 07:27:51 +00:00
|
|
|
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"
|