-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.08 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
37
38
39
40
41
42
43
44
45
[package]
name = "koifish"
version = "0.0.7"
authors = ["francis-du <[email protected]>"]
keywords = ["cli", "tui"]
edition = "2018"
license = "Apache-2.0"
description = "Koifish"
readme = "README.md"
homepage = "https://trisasnava.org/koifish"
documentation = "https://trisasnava.org/koifish"
repository = "https://github.com/trisasnava/koifish"
[[bin]]
name = "koi"
path = "src/main.rs"
[dependencies]
log = "0.4.11"
fern = "0.5"
toml = "0.5.6"
chrono = "0.4"
webbrowser = "0.5.5"
dirs = "3.0.1"
git2 = "0.13"
url = "2.2.1"
serde_json = "1.0"
serde_derive = "0.9"
serde = { version = "1.0.110", features = ["derive"] }
paw = "1.0"
indicatif = "0.15.0"
crossterm = "0.17"
tui = { version = "0.9", default-features = false, features = ['crossterm'] }
structopt = { version = "0.3", features = ["paw"] }
reqwest = { version = "0.10", features = ["json"] }
tokio = { version = "1.8", features = ["macros"] }
[dependencies.github-rs]
version = "0.7"
default-features = false
features = ["rust-native-tls"]
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser"] }