forked from arcnmx/ddc-hi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (30 loc) · 1013 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "ddc-hi"
version = "0.1.3"
authors = ["arcnmx"]
build = "build.rs"
description = "High level DDC/CI monitor control"
keywords = ["ddc", "mccs", "vcp", "vesa"]
documentation = "http://arcnmx.github.io/ddc-hi-rs/ddc_hi"
repository = "https://github.com/arcnmx/ddc-hi-rs"
readme = "README.md"
license = "MIT"
[badges]
travis-ci = { repository = "arcnmx/ddc-hi-rs" }
maintenance = { status = "passively-maintained" }
[dependencies]
ddc = "^0.2.0"
edid = "^0.2.0"
mccs = "^0.1.0"
mccs-caps = "^0.1.0"
mccs-db = "^0.1.1"
failure = "^0.1.1"
log = "^0.4.1"
[target.'cfg(target_os = "linux")'.dependencies]
ddc-i2c = { version = "^0.2.1", features = ["with-linux", "with-linux-enumerate"], optional = true }
[target.'cfg(windows)'.dependencies]
ddc-winapi = { version = "^0.2.0", optional = true }
nvapi = { version = "^0.1.2", default-features = false, features = ["i2c"], optional = true }
ddc-i2c = { version = "^0.2.1", optional = true }
[features]
default = ["ddc-i2c", "ddc-winapi", "nvapi"]