-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 1.18 KB
/
Cargo.toml
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
[package]
name = "git-task"
version = "0.2.2"
authors = ["jhspetersson <[email protected]>"]
description = "Local-first task manager/bug tracker within your git repository which can sync issues with remote sources."
keywords = ["git", "task", "manager", "bug", "tracker"]
categories = ["command-line-utilities", "command-line-interface"]
documentation = "https://github.com/jhspetersson/git-task/blob/master/README.md"
homepage = "https://github.com/jhspetersson/git-task"
repository = "https://github.com/jhspetersson/git-task"
readme = "README.md"
license = "MIT"
edition = "2021"
[lib]
name = "gittask"
path = "src/lib.rs"
[dependencies]
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
enable-ansi-support = "0.2.1"
evalexpr = "11"
futures-util = "0.3"
git2 = "0.19.0"
gitlab = "0.1704.1"
graphql_client = { version = "0.14", features = ["reqwest-blocking"] }
jira_v3_openapi = "1"
nu-ansi-term = "0.50"
octocrab = { version = "0.40", features = ["stream"] }
regex = "1.1"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3"
tokio = { version = "1.39", features = ["rt-multi-thread"] }