-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 849 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 849 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
[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.5.1"
[dependencies]
clap = { version = "4.5.53", optional = true }
log = "0.4.29"
reqwest = { version = "0.12.26", default-features = false, features = [
"charset",
"http2",
"json",
"macos-system-configuration",
] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
serde_repr = "0.1.20"
serde_with = "3.16.1"
thiserror = "2.0.17"
[features]
clap = ["dep:clap"]
default = ["openssl"]
openssl = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]
[dev-dependencies]
serde_json = "1.0.145"