-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (29 loc) · 851 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
[package]
name = "cultura"
description = "Enhance your knowledge day by day, directly from your terminal"
version = "1.0.0"
edition = "2021"
authors = ["Anthony HAMON <[email protected]>"]
license = "MIT"
repository = "https://github.com/antham/cultura"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["blocking","json"] }
scraper = "0.16.0"
structopt = "0.3"
rusqlite = { version = "0.29.0", features = ["bundled"] }
chrono = "0.4.26"
daemonize = "0.5.0"
uuid = {version = "1.3.1", features = ["v4"]}
colored = "2.0.0"
home = "0.5.5"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
toml = "0.7.3"
nix = "0.26.2"
typetag = "0.2"
dyn-clone = "1.0.11"
[dev-dependencies]
tempfile = "3.5.0"
rand = "0.8.5"