-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (31 loc) · 879 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
[package]
name = "drm"
version = "0.1.0"
authors = ["Tristram Healy <[email protected]>"]
description = "A rust library for using the Linux Kernel's DRM and KMS Api."
repository = "https://www.github.com/HornetBlack/rust-drm"
readme = "README.md"
keywords = ["linux", "drm", "kms", "graphics"]
categories = ["api-bindings", "os::unix-apis"]
license = "Apache-2.0"
license-file = "LICENSE"
# I have a lot of junk lying around. cargo-package does not like them.
include = [
"Cargo.toml",
"src/**/*.rs",
"tests/**/*.rs",
"examples/*.rs",
"LICENCE",
"README.md",
"ioctl_vals.c",
]
[dependencies]
libc = "0.2"
bitflags = "0.7"
memmap = "0.5"
futures = { version = "0.1", optional = true }
tokio-core = { version = "0.1", optional = true }
mio = { version = "0.6", optional = true }
[features]
default = []
tokio = ["futures", "tokio-core", "mio"]