summaryrefslogtreecommitdiffstats
path: root/src/core/Cargo.toml
blob: 346eec52bb027fe52628a26a6e1e3bfe395c61a8 (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
38
39
40
41
42
43
44
45
46
47
[package]
name = "girt-core"
version = "1.0.0"
authors = ["Tim Oram <dev@mitmaro.ca>"]
license = "GPL-3.0-or-later"
description = "Core modules for git-interactive-rebase-tool"
homepage = "https://gitrebasetool.mitmaro.ca/"
repository = "https://github.com/MitMaro/git-interactive-rebase-tool"
edition = "2021"
keywords = ["git", "cli"]
categories = ["command-line-interface", "command-line-utilities", "text-editors"]
readme = "../../README.md"

[lib]
name = "core"

[dependencies]
anyhow = "1.0.50"
captur = "0.1.0"
chrono = "0.4.19"
lazy_static = "1.4.0"
num-format = "0.4.0"
pico-args = "0.4.2"
unicode-segmentation = "1.8.0"
girt-config = {version = "1.0.0", path = "../../src/config"}
girt-display = {version = "1.0.0", path = "../../src/display"}
girt-git = {version = "0.1.0", path = "../../src/git"}
girt-input = {version = "1.0.0", path = "../../src/input"}
girt-todo-file = {version = "1.0.0", path = "../../src/todo_file"}
girt-view = {version = "1.0.0", path = "../../src/view"}

[dependencies.git2]
# git2:0.13.22 pulls libgit2-sys:0.12.23+1.2.0, which causes errors on some systems
# track: rust-lang/git2-rs#746
version = "=0.13.21"
default-features = false
features = []

[dev-dependencies]
captur = "0.1.0"
rstest = "0.11.0"
serial_test = "0.5.1"
tempfile = "3.2.0"

[build-dependencies]
chrono = "0.4.19"
rustc_version = "0.4.0"