-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 838 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (22 loc) · 838 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
[package]
name = "openlogi-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "Implementation library for the OpenLogi CLI (the `openlogi` binary)."
keywords = ["logitech", "hidpp", "hid", "mouse", "cli"]
categories = ["command-line-utilities", "hardware-support"]
[dependencies]
openlogi-core = { path = "../openlogi-core", version = "0.6.18" }
openlogi-hid = { path = "../openlogi-hid", version = "0.6.18" }
openlogi-assets = { path = "../openlogi-assets", version = "0.6.18" }
clap = { workspace = true }
anyhow = { workspace = true }
tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[lints]
workspace = true