-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
34 lines (30 loc) · 1.08 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
[package]
name = "stereokit"
version = "0.16.9"
edition = "2021"
description = "Higher-Level wrapper around stereokit-sys bindings for StereoKitC library for XR"
homepage = "https://stereokit.net/"
keywords = ["stereokit", "XR", "VR", "AR"]
license = "MIT"
repository = "https://github.com/MalekiRe/stereokit-rs"
[features]
default = ["auto-hash-id-location", "serde"]
physics = ["stereokit-sys/physics"]
linux-egl = ["stereokit-sys/linux-egl"]
bevy_ecs = ["stereokit-sys/bevy_ecs", "dep:bevy_ecs"]
bevy_reflect = ["stereokit-sys/bevy_reflect", "dep:bevy_reflect"]
serde = ["stereokit-sys/serde", "glam/serde"]
auto-hash-id-location = []
[dependencies]
stereokit-sys = { git = "https://github.com/MalekiRe/stereokit-sys.git" }
thiserror = "1.0.49"
glam = { version = "0.23.0" }
bitflags = "1.3.2"
concat-idents = "1.1.4"
serde = { version = "1.0.164", features = ["serde_derive"] }
serde_repr = "0.1.12"
num_enum = "0.6.1"
bevy_ecs = { version = "0.10.1", optional = true }
bevy_reflect = { version = "0.10.1", optional = true }
[target.'cfg(target_os = "android")'.dependencies]
ndk-context = "0.1.1"