-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.69 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
35
36
37
38
39
[package]
name = "wayland_hwc3"
version = "0.1.0"
edition = "2021"
[dependencies]
binder = { package = "binder_ndk", version = "0.2.0" }
binder_tokio = "0.2.0"
nix = { version = "0.27.0", features = ["ioctl", "feature", "mman", "socket", "uio", "fs"] }
tokio = { version = "1.25.0", features = ["rt"] }
async-trait = "0.1.74"
wayrs-client = { version = "1.0.2", features = ["tokio"] }
wayrs-protocols = { version = "0.13.1", features = ["xdg-shell", "linux-dmabuf-unstable-v1", "single-pixel-buffer-v1", "viewporter"] }
wayrs-utils = { version = "0.14.0", features = ["shm_alloc", "dmabuf_feedback"]}
wayrs-egl = "0.5.0"
android_hardware_common = { path = "android_hardware_common" }
android_hardware_graphics_common = { path = "android_hardware_graphics_common" }
android_hardware_graphics_composer3 = { path = "android_hardware_graphics_composer3" }
android_hardware_input = { path = "android_hardware_input" }
gles31 = "1.0"
wayrs-client-transport-virtgpu = {path = "../wayrs-client-transport-virtgpu"}
regex = "1.10.4"
libc = "0.2.153"
[patch.crates-io]
shmemfdrs2 = { path = "../rust-deps/shmemfdrs2" }
libc = { path = "../rust-deps/libc" }
wayrs-client = { path = "../rust-deps/wayrs/wayrs-client" }
wayrs-core = { path = "../rust-deps/wayrs/wayrs-core" }
wayrs-protocols = { path = "../rust-deps/wayrs/wayrs-protocols" }
wayrs-utils = { path = "../rust-deps/wayrs/wayrs-utils" }
wayrs-egl = { path = "../rust-deps/wayrs/wayrs-egl" }
#mio = { path = "../rust-deps/mio" }
binder_tokio = { path = "../rust-deps/binder_rs/binder_tokio"}
binder_ndk = { path = "../rust-deps/binder_rs/binder"}
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Clink-arg=-Wl,--no-rosegment"]