-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 888 Bytes
/
Cargo.toml
File metadata and controls
44 lines (37 loc) · 888 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "git-absorb"
version = "0.9.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 = "2021"
include = [
"**/*.rs",
"Cargo.*",
"*.md",
]
rust-version = "1.74.1"
[profile.release]
lto = true
[[bin]]
name = "git-absorb"
path = "src/main.rs"
[dependencies.git2]
version = "0.20"
default-features = false
[dependencies]
clap = { version = "4", features = ["cargo", "wrap_help", "derive"] }
clap_complete = "4"
clap_complete_nushell = "4"
slog = { version = "2.5", features = ["max_level_debug"] }
slog-term = "2.6"
memchr = "2.3"
anyhow = "1.0"
[dev-dependencies]
iobuffer = "0.2.0"
serde_json = "1.0.140"
slog-extlog = "8.1.0"
tempfile = "3.1"