forked from pedrosland/rascam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 800 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
[package]
name = "rascam"
version = "0.1.0"
authors = ["Peter Sutherland <[email protected]>"]
description = "Library for taking photos and videos with the Raspberry Pi camera"
repository = "https://github.com/pedrosland/rascam"
documentation = "https://pedrosland.github.io/rascam/"
readme = "README.md"
license = "MIT"
categories = [ "hardware-support" ]
keywords = [ "camera", "raspberry", "pi", "rpi" ]
exclude = [ "ci/*" ]
build = "build.rs"
edition = "2018"
[dependencies]
mmal-sys = "0.1.0-3"
libc = "0.2"
parking_lot = "0.10"
scopeguard = "1.0"
futures = "0.3"
tracing = "0.1.37"
[dev-dependencies]
tokio = { version = "0.2", features = ["full"] }
tracing-subscriber = "0.3.16"
[features]
default = []
[package.metadata.docs.rs]
default-target = "armv7-unknown-linux-gnueabihf"