-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 718 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
[package]
name = "libmonitor"
description = "A cross platform library to enable communication with VESA compliant monitors"
version = "0.1.2"
keywords = ["ddc", "mccs", "vcp", "vesa", "monitor"]
edition = "2021"
authors = [
"ju6ge <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/ju6ge/libmonitor"
license-file = "LICENSE"
[package.metadata.release]
tag-name = "{{version}}"
publish = false
[dependencies]
anyhow = "1.0.83"
log = "0.4.21"
nom = "7.1.3"
thiserror = "1.0.60"
serde = { version = "1.0.203", optional = true, features = [ "derive" ] }
[target.'cfg(target_os = "linux")'.dependencies]
udev = "0.8.0"
i2cdev = "0.6.0"
[features]
default = []
serde = ["dep:serde"]