73 lines
2.1 KiB
TOML
73 lines
2.1 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "stardust-xr-server"
|
|
version = "0.10.2"
|
|
authors = ["Nova King <technobaboo@proton.me>"]
|
|
description = "Stardust XR reference display server"
|
|
license = "GPLv2"
|
|
repository = "https://github.com/StardustXR/stardust-xr-server/"
|
|
homepage = "https://stardustxr.org"
|
|
|
|
[dependencies]
|
|
color-eyre = { version = "0.6.2", default-features = false }
|
|
clap = { version = "4.2.4", features = ["derive"] }
|
|
dashmap = "5.4.0"
|
|
glam = {version = "0.24.0", features = ["mint"]}
|
|
lazy_static = "1.4.0"
|
|
mint = "0.5.9"
|
|
nanoid = "0.4.0"
|
|
once_cell = "1.17.1"
|
|
parking_lot = "0.12.1"
|
|
portable-atomic = {version = "1.2.0", features = ["float", "std"]}
|
|
rustc-hash = "1.1.0"
|
|
tokio = { version = "1.27.0", features = ["rt-multi-thread", "signal"] }
|
|
send_wrapper = "0.6.0"
|
|
prisma = "0.1.1"
|
|
xkbcommon = { version = "0.5.0", default-features = false, optional = true }
|
|
stardust-xr = "0.11.3"
|
|
directories = "5.0.0"
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
global_counter = "0.2.2"
|
|
rand = "0.8.5"
|
|
|
|
[dependencies.stereokit]
|
|
default-features = false
|
|
features = ["linux-egl", "color_named", "prisma"]
|
|
version = "0.15.3"
|
|
|
|
[dependencies.smithay]
|
|
# git = "https://github.com/technobaboo/smithay.git" # Until we get stereokit to understand OES samplers and external textures
|
|
git = "https://github.com/smithay/smithay.git" # Until we get stereokit to understand OES samplers and external textures
|
|
default-features = false
|
|
features = ["desktop", "renderer_gl", "wayland_frontend"]
|
|
version = "*"
|
|
optional = true
|
|
|
|
[dependencies.console-subscriber]
|
|
version = "0.1.8"
|
|
optional = true
|
|
|
|
[dependencies.tracing-chrome]
|
|
version = "0.7.1"
|
|
optional = true
|
|
|
|
[features]
|
|
default = ["wayland"]
|
|
wayland = ["dep:smithay", "dep:xkbcommon"]
|
|
profile_tokio = ["dep:console-subscriber", "tokio/tracing"]
|
|
profile_app = ["dep:tracing-chrome"]
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
|
|
# [patch.crates-io.stereokit]
|
|
# path = "../stereokit-rs"
|
|
# [patch.crates-io.stereokit-sys]
|
|
# path = "../stereokit-sys"
|
|
# [patch.crates-io.stardust-xr]
|
|
# path = "../core/core" |