aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 6769f3fee100a68605b03703a9e7c800ba4ad25c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "taizen"
license = "MIT"
version = "0.1.0"
authors = ["NerdyPepper <[email protected]>"]
description = "TUI MediaWiki browser"

[dependencies]
reqwest = { git = "https://github.com/seanmonstar/reqwest" }
serde_json = { git = "https://github.com/serde-rs/json" }
cursive = { git = "https://github.com/gyscos/Cursive" }
regex = "1"
urlencoding = "1.0.0"
clap = "2.32.0"
lazy_static = "1.0.2"

[profile.dev]
opt-level = 1

[profile.release]
opt-level = 3