-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
42 lines (34 loc) · 926 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
41
42
[package]
name = "ovr_overlay"
version = "0.0.0"
description = "Rust bindings for OpenVR overlays"
authors.workspace = true
license.workspace = true
repository.workspace = true
edition.workspace = true
rust-version.workspace = true # Rust security fix
[features]
default = ["ovr_applications", "ovr_chaperone_setup", "ovr_input"]
ovr_applications = []
ovr_chaperone_setup = []
ovr_input = []
ovr_system = []
[dependencies]
ovr_overlay_sys = { version = "=0.0.0", path = "sys" }
lazy_static = "1"
thiserror = "1"
derive_more = "0.99"
log = "0.4"
nalgebra = { version = "0.30", optional = true }
slice-of-array = "0.3"
enumset = "1.0.12"
[workspace]
members = ["sys"]
resolver = "2"
# Inherited by crates
[workspace.package]
authors = ["Ryan Butler <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TheButlah/ovr_overlay"
edition = "2021"
rust-version = "1.71.1" # Rust security fix