1
0
Fork 0
forked from wry/wry

all: refactor to cargo workspace, remove config shared library, remove protocol perms, add dpms cli (#7)

This commit is contained in:
kossLAN 2026-06-06 23:14:53 -04:00
parent 5db14936e7
commit bfc2a525de
616 changed files with 32344 additions and 31026 deletions

View file

@ -1,9 +1,9 @@
[package]
name = "jay-compositor"
version = "1.12.0"
edition = "2024"
version.workspace = true
edition.workspace = true
build = "build/build.rs"
license = "GPL-3.0-only"
license.workspace = true
description = "The Jay compositor"
repository = "https://github.com/mahkoh/jay"
default-run = "jay"
@ -13,7 +13,61 @@ name = "jay"
path = "src/main.rs"
[workspace]
members = ["jay-config", "toml-config", "algorithms", "toml-spec", "wire-to-xml", "xml-to-wire"]
resolver = "3"
members = [
"crates/jay-config",
"crates/jay-config-schema",
"crates/geometry",
"crates/layout-animation",
"crates/formats",
"crates/edid",
"crates/units",
"crates/utils",
"crates/criteria",
"crates/cmm",
"crates/time",
"crates/tracy",
"crates/async-engine",
"crates/io-uring",
"crates/bufio",
"crates/dbus-core",
"crates/xcon",
"crates/wire-types",
"crates/wire-buf",
"crates/tree-types",
"crates/eventfd-cache",
"crates/wheel",
"crates/cpu-worker",
"crates/sighand",
"crates/pr-caps",
"crates/bugs",
"crates/logger",
"crates/video-types",
"crates/output-types",
"crates/input-types",
"crates/keyboard",
"crates/gfx-types",
"crates/theme",
"crates/clientmem",
"crates/allocator",
"crates/output-schedule",
"crates/drm-feedback",
"crates/udmabuf",
"crates/damage",
"crates/pango",
"crates/libinput",
"crates/toml-config",
"crates/toml-parser",
"crates/algorithms",
"crates/toml-spec",
"crates/wire-to-xml",
"crates/xml-to-wire",
]
[workspace.package]
version = "1.12.0"
edition = "2024"
license = "GPL-3.0-only"
[profile.release]
panic = "abort"
@ -23,9 +77,48 @@ debug = "full"
panic = "abort"
[dependencies]
jay-config = { version = "1.10.0", path = "jay-config" }
jay-toml-config = { version = "0.12.0", path = "toml-config" }
jay-algorithms = { version = "0.4.0", path = "algorithms" }
jay-config = { path = "crates/jay-config" }
jay-toml-config = { path = "crates/toml-config" }
jay-algorithms = { path = "crates/algorithms" }
jay-geometry = { path = "crates/geometry" }
jay-layout-animation = { path = "crates/layout-animation" }
jay-formats = { path = "crates/formats" }
jay-edid = { path = "crates/edid" }
jay-units = { path = "crates/units" }
jay-utils = { path = "crates/utils" }
jay-criteria = { path = "crates/criteria" }
jay-cmm = { path = "crates/cmm" }
jay-time = { path = "crates/time" }
jay-tracy = { path = "crates/tracy" }
jay-async-engine = { path = "crates/async-engine" }
jay-io-uring = { path = "crates/io-uring" }
jay-bufio = { path = "crates/bufio" }
jay-dbus-core = { path = "crates/dbus-core" }
jay-xcon = { path = "crates/xcon" }
jay-wire-types = { path = "crates/wire-types" }
jay-wire-buf = { path = "crates/wire-buf" }
jay-tree-types = { path = "crates/tree-types" }
jay-eventfd-cache = { path = "crates/eventfd-cache" }
jay-wheel = { path = "crates/wheel" }
jay-cpu-worker = { path = "crates/cpu-worker" }
jay-sighand = { path = "crates/sighand" }
jay-pr-caps = { path = "crates/pr-caps" }
jay-bugs = { path = "crates/bugs" }
jay-logger = { path = "crates/logger" }
jay-video-types = { path = "crates/video-types" }
jay-output-types = { path = "crates/output-types" }
jay-input-types = { path = "crates/input-types" }
jay-keyboard = { path = "crates/keyboard" }
jay-gfx-types = { path = "crates/gfx-types" }
jay-theme = { path = "crates/theme" }
jay-clientmem = { path = "crates/clientmem" }
jay-allocator = { path = "crates/allocator" }
jay-output-schedule = { path = "crates/output-schedule" }
jay-drm-feedback = { path = "crates/drm-feedback" }
jay-udmabuf = { path = "crates/udmabuf" }
jay-damage = { path = "crates/damage" }
jay-pango = { path = "crates/pango" }
jay-libinput = { path = "crates/libinput" }
uapi = "0.2.13"
thiserror = "2.0.11"
@ -58,8 +151,6 @@ serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.128"
linearize = { version = "0.1.3", features = ["derive"] }
png = "0.18.0"
rustc-demangle = { version = "0.1.24", optional = true }
tracy-client-sys = { version = "0.24.1", features = ["ondemand", "manual-lifetime", "debuginfod", "demangle"], optional = true }
kbvm = { version = "0.1.6", features = ["compose"] }
tiny-skia = { version = "0.12.0", default-features = false, features = ["std"] }
regex = "1.11.1"
@ -90,5 +181,5 @@ opt-level = 3
[features]
rc_tracking = []
it = []
tracy = ["dep:tracy-client-sys", "dep:rustc-demangle"]
it = ["jay-async-engine/it", "jay-cpu-worker/it"]
tracy = ["jay-tracy/tracy", "jay-async-engine/tracy", "jay-cpu-worker/tracy", "jay-clientmem/tracy"]