-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathCargo.toml
38 lines (33 loc) · 812 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
[package]
name = "tickrs"
version = "0.11.0"
authors = ["tarkah <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/tarkah/tickrs"
readme = "README.md"
description = "Realtime ticker data in your terminal 📈"
keywords = ["tui","terminal","stocks"]
categories = ["command-line-utilities"]
[workspace]
members = [
".",
"api",
]
[dependencies]
tickrs-api = { path = "api/", version = "0.11.0" }
anyhow = "1.0"
crossbeam-channel = "0.4"
chrono = "0.4"
chrono-tz = "0.5"
dirs-next = "2.0.0"
itertools = "0.9"
lazy_static = "1.4"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
structopt = "0.3"
async-std = "1.5"
futures = "0.3"
better-panic = "0.2"
crossterm = "0.17"
tui = { version = "0.9", default-features = false, features = ["crossterm"] }