-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.42 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (37 loc) · 1.42 KB
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
[workspace]
resolver = "2"
members = ["crates/ticgit-lib", "crates/ticgit"]
[workspace.package]
version = "0.3.1"
edition = "2021"
license = "MIT"
authors = ["Scott Chacon <schacon@gmail.com>"]
repository = "https://github.com/schacon/ticgit"
homepage = "https://github.com/schacon/ticgit"
readme = "README.md"
keywords = ["git", "issues", "tickets", "metadata", "cli"]
categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
git-meta-lib = "0.1"
gix = { version = "0.81", default-features = false, features = ["sha1", "revision", "merge", "tree-editor", "blob-diff"] }
# Pin gix-actor: 0.40.1 (Apr 2026) bumped winnow to 1.0 but gix-object 0.58 still needs 0.7.
gix-actor = "=0.40.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
time = { version = "0.3", features = ["formatting", "parsing", "macros", "serde-well-known"] }
uuid = { version = "1", features = ["v4", "serde"] }
anyhow = "1"
clap = { version = "4", features = ["derive"] }
dialoguer = "0.12"
crossterm = "0.29"
dirs = "5"
ratatui = "0.30"
unicode-width = "0.2"
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
soe = "0.6.0"
ureq = { version = "3", features = ["json"] }
rusqlite = { version = "0.33", features = ["bundled"] }
tempfile = "3"
assert_cmd = "2"
predicates = "3"