summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 415e90f915fefac5b30a9f3c8d97ebcc8ff96d7c (plain)
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
[package]
name = "so"
version = "0.1.0"
authors = ["Sam Tay <sam.chong.tay@gmail.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
thiserror = "1.0"
clap = "2.33"
directories = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"

reqwest = { version = "0.10", features = ["gzip", "json", "blocking"] }
rayon = "1.3"

lazy_static = "1.4"
minimad = "0.6"
termimad = "0.8"

crossterm = { version = "0.17", features = ["event-stream"] }
pulldown-cmark = { version = "0.7", default-features = false }
phf = { version = "0.8", features = ["macros"] }
unicode-width = "0.1.5"
cursive = { version = "0.15", features = ["toml"] }