summaryrefslogtreecommitdiffstats
path: root/src/git/Cargo.toml
blob: 0720f395c4dba05777fbed9c173d94a122c24be8 (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
36
37
[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]
chrono = "0.4.23"
lazy_static = "1.4.0"
parking_lot = "0.12.1"
tempfile = "3.6.0"
thiserror = "1.0.38"

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

[dev-dependencies]
claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
pretty_assertions = "1.3.0"
rstest = "0.16.0"
serial_test = "2.0.0"
girt-testutils = {version = "0.1.0", path = "../testutils"}

[build-dependencies]
rustc_version = "0.4.0"