-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (37 loc) · 982 Bytes
/
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
37
38
39
40
41
[package]
name = "turbocommit"
version = "0.20.1"
edition = "2021"
authors = [ "Sett",]
description = "A CLI tool to create commit messages with OpenAI GPT models"
readme = "README.md"
keywords = [ "chatgpt", "commit", "commit_message", "cli", "command-line",]
repository = "https://github.com/dikkadev/turboCommit"
homepage = "https://github.com/dikkadev/turboCommit"
documentation = "https://github.com/dikkadev/turboCommit"
license = "MIT"
[dependencies]
anyhow = "1.0.69"
colored = "2.0.0"
crates_io_api = "0.8.1"
crossterm = "0.26.1"
edit = "0.1.4"
futures = "0.3.27"
git2 = "0.16.1"
home = "0.5.4"
inquire = "0.6.0"
reqwest-eventsource = "0.4.0"
serde_json = "1.0.93"
serde_yaml = "0.9.19"
terminal-supports-emoji = "0.1.3"
tiktoken-rs = "0.2.2"
unicode-segmentation = "1.10.1"
[dependencies.reqwest]
version = "0.11.14"
features = [ "stream",]
[dependencies.serde]
version = "1.0.152"
features = [ "derive",]
[dependencies.tokio]
version = "1.26.0"
features = [ "full",]