-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 1014 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 1014 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]
name = "mataho"
version = "0.1.0"
authors = ["Coko <91132775+Coko7@users.noreply.github.com>"]
edition = "2021"
description = "A cli to interact with a local Tahoma box"
license = "GPL-3.0-only"
repository = "https://github.com/Coko7/mataho"
keywords = ["cli", "tahoma", "somfy", "smart-home", "home-automation"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0"
clap = { version = "4.0", features = [ "derive" ] }
clap-verbosity-flag = "2.2.1"
env_logger = "0.11.5"
fuzzy-matcher = "0.3.7"
log = "0.4.22"
nucleo = "0.5.0"
prettytable-rs = "0.10.0"
reqwest = { version = "0.12.5", features = [ "blocking", "json" ] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
toml = "0.8.19"
xdg = "^2.1"
[dependencies.uuid]
version = "1.10.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]