-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
35 lines (30 loc) · 1.01 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
[package]
name = "libcamera"
version = "0.3.0"
edition = "2021"
description = "Safe Rust bindings for libcamera"
documentation = "https://docs.rs/libcamera"
repository = "https://github.com/lit-robotics/libcamera-rs"
license = "MIT OR Apache-2.0"
keywords = ["libcamera", "camera"]
categories = ["api-bindings", "computer-vision", "multimedia"]
readme = "../README.md"
[features]
default = ["vendor_draft", "libcamera_semver_versioning"]
# Fallback to semver compatible libcamera control/property bindings when exact version is unavailable
libcamera_semver_versioning = []
# Enables draft vendor control/property extensions
vendor_draft = []
# Enables Raspbbery Pi control/property extensions
vendor_rpi = []
[dependencies]
bitflags = "2.0.0-rc.2"
drm-fourcc = "2.2"
libc = "0.2"
libcamera-sys = { path = "../libcamera-sys", version = "0.3.0", default-features = false }
num_enum = "0.6.1"
smallvec = "1.10"
thiserror = "1.0"
[build-dependencies]
# libcamera-sys = { path = "../libcamera-sys", version = "0.3.0" }
semver = "1.0.22"