-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
23 lines (22 loc) · 834 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
[package]
name = "wavelog-hamlib"
version = "1.2.0"
authors = ["Luca Cireddu <[email protected]>"]
description = "Simple tool to connect Hamlib rigctld instance with Wavelog"
repository = "https://github.com/sardylan/wavelog-hamlib.git"
license = "GPL-3.0-only"
keywords = ["wavelog", "hamlib", "adif", "tokio", "reqwest"]
edition = "2021"
[dependencies]
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.17", features = ["cargo", "color", "derive", "env", "unicode"] }
hamlib-client = "1.0.0"
lazy_static = "1.5.0"
log = "0.4.22"
log4rs = "1.3.0"
regex = "1.10.6"
reqwest = { version = "0.12.7", features = ["json"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0.128", features = ["std"] }
thiserror = "1.0.63"
tokio = { version = "1.40.0", features = ["full"] }