-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (39 loc) · 1.22 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
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "mystic_light_sdk"
version = "0.4.2"
edition = "2021"
authors = ["meskill"]
description = "A Rust wrapper for the MysticLight SDK (MSI hardware and peripherals)"
homepage = "https://github.com/meskill/mystic-light-sdk"
repository = "https://github.com/meskill/mystic-light-sdk"
license = "Apache-2.0"
keywords = ["mystic-light", "sdk", "rgb", "rgb-led"]
categories = ["api-bindings"]
include = ["/src/**", "/examples/**", "build.rs", "README.md", "CHANGELOG.md"]
[badges]
maintenance = { status = "passively-maintained" }
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-gnu"
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
async-graphql = { version="4.0.1", optional=true }
custom_error = "1.9.2"
either = "1.7.0"
libloading = "0.7.3"
oaidl = "0.2.1"
serde = { version="1.0.137", optional=true, features=["derive"] }
tracing = "0.1.36"
widestring = "0.4.3" # version compatible with `oaidl`
winapi = { version = "0.3.9" }
[dev-dependencies]
serde_json = { version="1.0.81" }
tracing-subscriber = "0.3.15"
[build-dependencies]
copy_dir = "0.1.2"
[features]
serde = ["dep:serde"]
async-graphql = ["dep:async-graphql"]
[[example]]
name = "serde_serialization"
required-features = ["serde"]