summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 29629f2f82b71b17babb2fe9808b090eea8d3488 (plain) (blame)
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
[package]
name = "solarctl"
version = "0.2.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

thiserror = "1"
color-eyre = "0.6"
eyre = "0.6"

tabular = "0.2"

[dependencies.solarlib]
git = "https://git.carathe.dev/solard/solarlib"
branch = "master"

[dependencies.clap]
version = "3"
features = [
	"derive"
]

[dependencies.reqwest]
version = "0.11"
features = [
	"blocking",
	"json"
]