summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c7b17bd68a4c77480816ab076a41e2e9db9d7d74 (plain)
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
[package]
name = "git-interactive-rebase-tool"
version = "0.3.0"
authors = ["Tim Oram <mitmaro@gmail.com>"]
license = "ISC"
description = "Full feature terminal based sequence editor for git interactive rebase. Written in Rust using ncurses."
repository = "https://github.com/MitMaro/git-interactive-rebase-tool"
keywords = [ "git", "editor", "tool", "rebase", "interactive", "ncurses" ]
readme = "README.md"

[dependencies]
pancurses = "0.7"

[package.metadata.deb]
maintainer = "Tim Oram <me@mitmaro.ca>"
copyright = "Tim Oram <me@mitmaro.ca>"
license_file = ["LICENSE", "2"]
extended_description = """\
Full feature terminal based sequence editor for git interactive rebase. Written in Rust using ncurses."""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
    ["target/release/git-interactive-tool", "usr/bin/interactive-rebase-tool", "755"],
    ["README.md", "usr/share/doc/cargo-deb/README", "644"],
]