mirror of
https://github.com/nestriness/warp.git
synced 2025-12-13 02:15:42 +02:00
36 lines
829 B
TOML
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"
|
|
] |