Files
netris-warp/wayland-display-core/Cargo.toml
Wanjohi 9140dbf081 init
2023-11-25 18:16:42 +03:00

36 lines
829 B
TOML

[package]
name = "wayland-display-core"
authors = ["Victoria Brekenfeld <git@drakulix.de>", "Alessandro Beltramo <github.com/ABeltramo>"]
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Wayland Compositor producing GStreamer buffers"
rust-version = "1.70"
[lib]
name = "waylanddisplaycore"
crate-type = ["cdylib", "staticlib", "rlib"]
path = "src/lib.rs"
[dependencies]
gst.workspace = true
gst-video.workspace = true
tracing.workspace = true
once_cell.workspace = true
wayland-backend = "0.1.0"
wayland-scanner = "0.30.0"
[dependencies.smithay]
git = "https://github.com/smithay/Smithay"
rev = "b1c682742a"
default-features = false
features = [
"backend_drm",
"backend_egl",
"backend_libinput",
"backend_udev",
"renderer_gl",
"use_system_lib",
"desktop",
"wayland_frontend"
]