-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
40 lines (36 loc) · 903 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
37
38
39
40
[package]
name = "leaprs"
version = "0.2.2"
edition = "2021"
authors = ["Pierre Lulé <[email protected]>"]
description = "Safe wrapper for the LeapC Ultraleap (Leap Motion) hand tracking device API."
readme = "README.md"
repository = "https://github.com/plule/leaprs"
license = "MIT OR Apache-2.0"
categories = [
"api-bindings",
"game-development",
"computer-vision",
"hardware-support",
]
keywords = ["leapc", "leap", "ultraleap", "hand"]
exclude = ["images/"]
[features]
default = ["gemini"]
gemini = []
glam = ["dep:glam"]
nalgebra = ["dep:nalgebra"]
[dependencies]
leap-sys = "0.2"
num_enum = "0.7.3"
thiserror = "2"
bitflags = "2"
derive_deref = "1.1.1"
glam = { version = "0.29", optional = true }
nalgebra = { version = "0.33", optional = true }
[dev-dependencies]
throbber = "0.1"
image = "0.25.5"
tempfile = "3.14.0"
[package.metadata.docs.rs]
features = ["glam", "nalgebra"]