-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (38 loc) · 996 Bytes
/
Cargo.toml
File metadata and controls
51 lines (38 loc) · 996 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "cryptoscope"
version = "0.4.0"
edition = "2024"
description = "Multi-exchange crypto symbols intelligence tool"
authors = ["CryptoScope Team"]
[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# HTTP client
reqwest = { version = "0.13", features = ["json"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# CLI framework
clap = { version = "4.4", features = ["derive"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Async trait support
async-trait = "0.1"
# For better table output
terminal_size = "0.4"
# TUI framework
ratatui = "0.29"
crossterm = "0.29"
unicode-width = "0.2"
# Database
rusqlite = { version = "0.39", features = ["bundled"] }
# Date/time handling
chrono = { version = "0.4", features = ["serde"] }
# Cross-platform directories
dirs = "5.0"
# Terminal colors
colored = "2.1"