-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
41 lines (35 loc) · 949 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
[workspace]
members = [
"autoupdater",
"networking/firmware_protocol",
"networking/solarxr",
"networking/tokio_shutdown",
"overlay",
"skeletal_model/rust",
"skeletal_model/napi",
"vqf",
]
exclude = ["da_demo", "nrf_demo", "firmware"]
default-members = [
"autoupdater",
"networking/firmware_protocol",
"networking/solarxr",
"networking/tokio_shutdown",
"skeletal_model/rust",
"skeletal_model/napi",
"vqf",
]
resolver = "2"
# These settings will apply to all members of the workspace that opt in to them
[workspace.package]
license = "MIT OR Apache-2.0"
authors = ["Ryan Butler <thebutlah@gmail.com>"]
repository = "https://github.com/SlimeVR/SlimeVR-Rust"
edition = "2021"
rust-version = "1.65" # GATs and let-else
# These may be opted into use by members of the workspace
[workspace.dependencies]
log = "0.4"
eyre = "0.6"
nalgebra = "0.31"
feature_macros = { git = "https://github.com/TheButlah/feature_macros" }