-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (30 loc) · 924 Bytes
/
Cargo.toml
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]
name = "bitcoinvert"
version = "0.1.6"
description = "CLI tool that fetches Bitcoin exchange rates from Blockchain.info and shows conversions to other currencies/denominations"
authors = ["Gabriel Comte"]
edition = "2021"
rust-version = "1.61.0"
repository = "https://github.com/gcomte/bitcoinvert"
license = "MIT"
[dependencies]
clap = { version = "4.5.26", features = ["derive"] }
colored = "3.0.0"
env_logger = "0.11.6"
exitcode = "1.1.2"
home-config = { version = "0.6.0", features = ["yaml"] }
log = "0.4.25"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["blocking", "json"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_yml = "0.0.12"
si-unit-prefix = "1.0.0"
strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
tabled = "0.17.0"
thiserror = "2.0.11"
thousands = "0.2.0"
typetag = "0.2"
lazy_static = "1.5.0"
[dev-dependencies]
assert_cmd = "2.0.16"