-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
31 lines (26 loc) · 842 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
[package]
name = "mmal-sys"
version = "0.1.0-3"
authors = ["Peter Sutherland <pedrosland+mmalsys@gmail.com>"]
description = "Rust definitions for mmal"
repository = "https://github.com/pedrosland/mmal-sys"
documentation = "https://pedrosland.github.io/mmal-sys/"
readme = "README.md"
license = "MIT"
categories = [ "external-ffi-bindings" ]
keywords = ["raspberry", "pi", "rpi"]
links = "mmal"
build = "build.rs"
exclude = [ "ci/*" ]
edition = "2018"
[dependencies]
libc = "0.2"
[build-dependencies]
bindgen = { version = "0.52.0", optional = true }
[features]
default = []
# Enable this feature to automatically generate bindings for the mmal headers.
# The default is to use the bindings already included in the src directory.
generate_bindings = ["bindgen"]
[package.metadata.docs.rs]
default-target = "armv7-unknown-linux-gnueabihf"