mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-14 19:38:41 -06:00
55 lines
1.7 KiB
TOML
55 lines
1.7 KiB
TOML
[package]
|
|
name = "kubi"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "libkubi"
|
|
crate-type = ["lib", "cdylib"]
|
|
|
|
[dependencies]
|
|
kubi-shared = { path = "../kubi-shared" }
|
|
kubi-logging = { path = "../kubi-logging" }
|
|
log = "0.4"
|
|
glium = { git = "https://github.com/glium/glium", rev = "5d50e7" }
|
|
glam = { version = "0.23", features = ["debug-glam-assert", "fast-math"] }
|
|
image = { version = "0.24", default_features = false, features = ["png"] }
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
hashbrown = "0.13"
|
|
nohash-hasher = "0.2.0"
|
|
rayon = "1.6"
|
|
shipyard = { git = "https://github.com/leudz/shipyard", rev = "a4f4d27edcf", default-features = false, features = ["std", "proc", "thread_local"] }
|
|
anyhow = "1.0"
|
|
flume = "0.10"
|
|
gilrs = { version = "0.10", default_features = false, features = ["xinput"] }
|
|
uflow = "0.7"
|
|
postcard = { version = "1.0", features = ["alloc"] }
|
|
serde_json = { version = "1.0", optional = true }
|
|
lz4_flex = { version = "0.10", default-features = false, features = ["std", "checked-decode"] }
|
|
static_assertions = "1.1"
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
ndk = "0.7"
|
|
ndk-glue = "0.7"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = { version = "0.3" }
|
|
|
|
[features]
|
|
default = []
|
|
generate_visualizer_data = ["serde_json", "shipyard/serde1"]
|
|
safe_lz4 = ["lz4_flex/safe-encode", "lz4_flex/safe-decode"]
|
|
parallel = ["shipyard/parallel"]
|
|
nightly = ["hashbrown/nightly", "glam/core-simd", "static_assertions/nightly", "kubi-shared/nightly"]
|
|
|
|
#part of wip android support
|
|
[package.metadata.android]
|
|
package = "com.ggh.kubi"
|
|
build_targets = ["aarch64-linux-android"]
|
|
assets = "../assets"
|
|
apk_name = "kubi"
|
|
theme = "@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen"
|
|
label = "Kubi"
|
|
orientation = "landscape"
|