File: Cargo.toml.orig

package info (click to toggle)
rust-git-absorb 0.6.9-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 212 kB
  • sloc: makefile: 15
file content (36 lines) | stat: -rw-r--r-- 647 bytes parent folder | download
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
[package]
name = "git-absorb"
version = "0.6.9"

authors = ["Stephen Jung <[email protected]>"]
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.13"
default-features = false

[dependencies]
clap = "~2.33"
slog = "~2.5"
slog-term = "~2.6"
slog-async = "~2.5"
memchr = "~2.3"
anyhow = "~1.0"

[dev-dependencies]
tempfile = "~3.1"