-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 795 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 795 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
[package]
authors = ["w3irdrobot <dro@w3ird.tech>"]
description = "Crate for interacting with the Bitaxe API."
edition = "2021"
homepage = "https://github.com/w3ird-tech/bacli"
license = " AGPL-3.0-only"
name = "bitaxe_api"
repository = "https://github.com/w3ird-tech/bacli"
version = "0.2.1"
[dependencies]
clap = { version = "4.5.26", optional = true }
log = "0.4.25"
reqwest = { version = "0.12.12", default-features = false, features = [
"charset",
"http2",
"macos-system-configuration",
"json",
] }
serde = { version = "1.0.217", features = ["derive"] }
serde_repr = "0.1.19"
serde_with = "3.12.0"
thiserror = "2.0.11"
[features]
clap = ["dep:clap"]
default = ["openssl"]
openssl = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]
[dev-dependencies]
serde_json = "1.0.137"