summaryrefslogtreecommitdiffstats
path: root/src/git/Cargo.toml
blob: b6c75ecf3f8ff05fe836d35b20ad659ff7528a82 (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
27
28
29
30
31
32
33
34
35
[package]
name = "girt-git"
version = "2.2.0"
authors = ["Tim Oram <dev@mitmaro.ca>"]
license = "GPL-3.0-or-later"
description = "Git module for git-interactive-rebase-tool"
homepage = "https://gitrebasetool.mitmaro.ca/"
repository = "https://github.com/MitMaro/git-interactive-rebase-tool"
edition = "2021"
keywords = ["git"]
categories = ["command-line-interface", "command-line-utilities"]
readme = "README.md"

[lib]
name = "git"

[dependencies]
anyhow = "1.0.57"
chrono = "0.4.19"
lazy_static = "1.4.0"
parking_lot = "0.12.0"
tempfile = "3.3.0"

[dependencies.git2]
version = "=0.14.2"
default-features = false
features = []

[dev-dependencies]
pretty_assertions = "1.2.1"
rstest = "0.11.0"
serial_test = "0.6.0"

[build-dependencies]
rustc_version = "0.4.0"