-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (27 loc) · 983 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
33
34
35
36
37
38
# This crate is not published to crates.io.
[package]
name = "address_book_with_redux_tui"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "address_book_with_redux_tui"
path = "src/main.rs"
[lib]
name = "address_book_with_redux_tui_lib"
path = "src/lib.rs"
[dependencies]
rand = "0.8.5"
# Tokio
tokio = { version = "1.21.2", features = ["full", "rt"] }
# HTTP Client
reqwest = { version = "0.11.12", features = ["json"] }
# Serde: https://github.com/serde-rs/serde
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Chrono & Serde: https://docs.rs/chrono/latest/chrono/index.html
chrono = { version = "0.4.22", features = ["serde", "rustc-serialize"] }
# Get the latest version of r3bl_rs_utils from local fs and not github
r3bl_rs_utils = { version = "0.9.0", path = "../r3bl_rs_utils" }
# https://crates.io/crates/async-trait
async-trait = "0.1.58"