-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 914 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 914 Bytes
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
[package]
name = "charty"
version = "0.6.0"
edition = "2024"
description = "Terminal-based stock market charting and analysis"
authors = ["cyoger"]
license = "MIT"
repository = "https://github.com/cyoger/charty"
readme = "README.md"
keywords = ["stocks", "tui", "terminal", "finance", "charts"]
categories = ["command-line-utilities", "visualization"]
[package.metadata.deb]
maintainer = "cyoger"
section = "utility"
priority = "optional"
assets = [
["target/release/charty", "usr/bin/", "755"],
]
[dependencies]
ratatui = "0.28"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
ureq = { version = "2.10", features = ["json", "cookies"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4"
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
futures-util = "0.3"
rand = "0.8"
dotenv = "0.15"
dirs = "5"
cookie_store = "=0.21.1"