-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 1.02 KB
/
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
34
[package]
name = "mataho"
version = "0.1.0"
authors = ["Coko <[email protected]>"]
edition = "2021"
description = "A cli to interact with a local Tahoma box"
readme = "README.md"
homepage = "https://github.com/Coko7/mataho"
repository = "https://github.com/Coko7/mataho"
license = "GPL-3.0-only"
keywords = ["cli", "tahoma", "mataho", "somfy", "clap-rs"]
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 = "*"
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"
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
]