forked from rust-openvr/rust-openvr-sys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 881 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (33 loc) · 881 Bytes
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
[package]
name = "openvr_sys_bindings"
version = "2.0.3"
authors = [
"Colin Sherratt",
"Erick Tryzelaar",
"Rene Eichhorn",
"Benjamin Saunders",
"Mawco (https://mar.co.gg)"
]
license = "MIT"
description = "Raw unsafe system binding for openvr (updated fork of https://github.com/rust-openvr/rust-openvr-sys)"
repository = "https://github.com/Mawco/rust-openvr-sys"
keywords = ["vr", "vive", "steamvr", "openvr"]
categories = [ "hardware-support", "external-ffi-bindings" ]
exclude = [
"openvr/samples/*",
"openvr/bin/*",
"openvr/lib/*",
"openvr/controller_callouts/*",
]
build = "build.rs"
[badges]
maintenance = { status = "passively-maintained" }
[build-dependencies]
cmake = "0.1"
bindgen = { version = "0.69.1", optional = true }
[lib]
name = "openvr_sys_bindings"
path = "lib.rs"
[features]
default = []
buildtime_bindgen = ["bindgen"]