forked from Builditluc/wiki-tui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (60 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "wiki-tui"
version = "0.8.2"
authors = ["builditluc <[email protected]>"]
edition = "2018"
repository = "https://github.com/Builditluc/wiki-tui"
description = "A simple and easy to use Wikipedia Text User Interface"
keywords = ["tui", "wikipedia"]
license = "MIT"
readme = "README.md"
include = [
"Cargo.*",
"src/",
"data/",
]
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["crossterm-backend"]
ncurses-backend = ["cursive/ncurses-backend"]
pancurses-backend = ["cursive/pancurses-backend"]
termion-backend = ["cursive/termion-backend"]
crossterm-backend = ["cursive/crossterm-backend"]
blt-backend = ["cursive/blt-backend"]
[dependencies]
syn = "=1.0.57"
serde_json = "1.0.61"
serde_repr = "0.1"
log = "0.4.13"
dirs = "3.0.1"
anyhow = "1.0"
select = "0.6"
log4rs = "1.0.0"
lazy_static = "1.4.0"
panic-message = "0.3.0"
backtrace = "0.3"
toml = "0.5.9"
structopt = "0.3.25"
chrono = "0.4"
urlencoding = "2.1.2"
url = { version = "2.4", features = ["serde"]}
snafu = "0.7"
[dependencies.cursive]
version = "0.20"
default-features = false
[dependencies.cursive_buffered_backend]
# git = "https://github.com/gyscos/cursive_buffered_backend"
version = "0.6.0"
[dependencies.cursive-aligned-view]
version = "0.6.0"
[dependencies.reqwest]
version = "0.11"
features = ["json", "blocking"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.uuid]
version = "0.8.2"
features = ["v4"]