forked from MitMaro/git-interactive-rebase-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (59 loc) · 1.92 KB
/
Cargo.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "git-interactive-rebase-tool"
version = "1.1.0"
authors = ["Tim Oram <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Full feature terminal based sequence editor for git interactive rebase. Written in Rust using ncurses."
homepage = "https://gitrebasetool.mitmaro.ca/"
repository = "https://github.com/MitMaro/git-interactive-rebase-tool"
keywords = [ "git", "editor", "tool", "rebase", "cli" ]
categories = ["command-line-interface", "command-line-utilities", "text-editors"]
readme = "README.md"
include = [
"**/*.rs",
"/Cargo.toml",
"/CHANGELOG.md",
"/LICENSE",
"/README.md"
]
edition = "2018"
[badges.appveyor]
repository = "MitMaro/git-interactive-rebase-tool"
service = "github"
project_name = "git-interactive-rebase-tool"
[badges.travis-ci]
repository = "MitMaro/git-interactive-rebase-tool"
[badges.maintenance]
status = "actively-developed"
[[bin]]
name = "interactive-rebase-tool"
path = "src/main.rs"
[dependencies]
chrono = "0.4"
clap = "2.32.0"
unicode-segmentation = "1.1.0"
[dependencies.pancurses]
version = "0.16"
features = ["win32", "wide"]
[dependencies.git2]
version = "0.7.2"
default-features = false
features = []
[features]
default = []
nightly = []
[package.metadata.deb]
maintainer = "Tim Oram <[email protected]>"
copyright = "Tim Oram <[email protected]>"
license-file = ["LICENSE", "2"]
extended-description = """\
Full feature terminal based sequence editor for git interactive rebase. Written in Rust using ncurses."""
depends = "libncursesw5 (>= 6), libgcc1 (>= 1:6), libtinfo5 (>= 6), zlib1g (>= 1:1), libc6 (>= 2)"
section = "utility"
priority = "optional"
assets = [
["target/release/interactive-rebase-tool", "usr/bin/interactive-rebase-tool", "755"],
["README.md", "usr/share/doc/cargo-deb/README", "644"],
["CHANGELOG.md", "usr/share/doc/cargo-deb/CHANGELOG", "644"],
["src/interactive-rebase-tool.1", "usr/share/man/man1/interactive-rebase-tool.1", "644"]
]