ALVR-IPv6/alvr/client_core/Cargo.toml

45 lines
1.2 KiB
TOML

[package]
name = "alvr_client_core"
version = "19.0.0-dev03"
authors = ["alvr-org", "Riccardo Zaglia <riccardo.zaglia5@gmail.com>"]
license = "MIT"
edition = "2021"
rust-version = "1.58"
[lib]
crate_type = ["staticlib", "cdylib"]
[dependencies]
alvr_audio = { path = "../audio" }
alvr_common = { path = "../common" }
alvr_events = { path = "../events" }
alvr_session = { path = "../session" }
alvr_sockets = { path = "../sockets" }
app_dirs2 = "2"
bincode = "1"
bytes = "1"
futures = "0.3"
glyph_brush_layout = "0.2"
rand = "0.8"
serde = "1"
serde_json = "1"
settings-schema = { version = "0.0.1", features = ["rename_camel_case"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
[target.'cfg(target_os = "android")'.dependencies]
android_logger = "0.11"
jni = "0.19"
ndk = { git = "https://github.com/zarik5/android-ndk-rs", rev = "f1d38a0", features = [
"api-level-26",
"media",
] }
ndk-context = "0.1"
ndk-sys = { git = "https://github.com/zarik5/android-ndk-rs", rev = "f1d38a0" }
oboe = "0.4" # todo: remove once AudioThread shutdown crash is fixed
[build-dependencies]
bindgen = "0.60"
cc = { version = "1", features = ["parallel"] }
walkdir = "2"