grain.social is a photo sharing platform built on atproto.
1[package]
2name = "grain-cli"
3version = "0.1.0"
4edition = "2021"
5
6[[bin]]
7name = "grain"
8path = "src/main.rs"
9
10[dependencies]
11tokio = { version = "1.0", features = ["full"] }
12reqwest = { version = "0.12", features = ["json"] }
13serde = { version = "1.0", features = ["derive"] }
14serde_json = "1.0"
15clap = { version = "4.0", features = ["derive"] }
16dialoguer = "0.11"
17image = "0.25"
18anyhow = "1.0"
19open = "5.0"
20hyper = { version = "1.0", features = ["full"] }
21hyper-util = { version = "0.1", features = ["full"] }
22http-body-util = "0.1"
23tokio-util = "0.7"
24futures-util = "0.3"
25chrono = { version = "0.4", features = ["serde"] }
26urlencoding = "2.1"
27url = "2.5"
28indicatif = "0.18"
29dirs = "6.0"