Your music, beautifully tracked. All yours. (coming soon)
teal.fm
teal-fm
atproto
1[package]
2name = "teal-cli"
3version = "0.1.0"
4edition = "2021"
5description = "A simple management tool for teal.fm AT Protocol services"
6
7[[bin]]
8name = "teal"
9path = "src/main.rs"
10
11[dependencies]
12# CLI framework
13clap = { version = "4.0", features = ["derive"] }
14anyhow = "1.0"
15serde = { version = "1.0", features = ["derive"] }
16serde_json = "1.0"
17
18# Async runtime
19tokio = { version = "1.0", features = [
20 "rt",
21 "macros",
22 "fs",
23 "rt-multi-thread",
24] }
25
26# Cryptography
27k256 = { version = "0.13", features = ["ecdsa"] }
28multibase = "0.9"
29hex = "0.4"
30rand = "0.8"
31
32# File system and paths
33dirs = "5.0"
34
35# Utilities
36chrono = { version = "0.4", features = ["serde"] }
37colored = "2.0"
38
39
40[features]
41default = []
42
43[dev-dependencies]
44tempfile = "3.0"