all: inherit metadeta from cargo workspace
This commit is contained in:
parent
1c21bd1259
commit
d920e554cf
52 changed files with 328 additions and 320 deletions
95
Cargo.toml
95
Cargo.toml
|
|
@ -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"
|
||||
|
|
@ -64,6 +64,11 @@ members = [
|
|||
"crates/xml-to-wire",
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
version = "1.12.0"
|
||||
edition = "2024"
|
||||
license = "GPL-3.0-only"
|
||||
|
||||
[profile.release]
|
||||
panic = "abort"
|
||||
debug = "full"
|
||||
|
|
@ -72,48 +77,48 @@ debug = "full"
|
|||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
jay-config = { version = "1.10.0", path = "crates/jay-config" }
|
||||
jay-toml-config = { version = "0.12.0", path = "crates/toml-config" }
|
||||
jay-algorithms = { version = "0.4.0", path = "crates/algorithms" }
|
||||
jay-geometry = { version = "0.1.0", path = "crates/geometry" }
|
||||
jay-layout-animation = { version = "0.1.0", path = "crates/layout-animation" }
|
||||
jay-formats = { version = "0.1.0", path = "crates/formats" }
|
||||
jay-edid = { version = "0.1.0", path = "crates/edid" }
|
||||
jay-units = { version = "0.1.0", path = "crates/units" }
|
||||
jay-utils = { version = "0.1.0", path = "crates/utils" }
|
||||
jay-criteria = { version = "0.1.0", path = "crates/criteria" }
|
||||
jay-cmm = { version = "0.1.0", path = "crates/cmm" }
|
||||
jay-time = { version = "0.1.0", path = "crates/time" }
|
||||
jay-tracy = { version = "0.1.0", path = "crates/tracy" }
|
||||
jay-async-engine = { version = "0.1.0", path = "crates/async-engine" }
|
||||
jay-io-uring = { version = "0.1.0", path = "crates/io-uring" }
|
||||
jay-bufio = { version = "0.1.0", path = "crates/bufio" }
|
||||
jay-dbus-core = { version = "0.1.0", path = "crates/dbus-core" }
|
||||
jay-xcon = { version = "0.1.0", path = "crates/xcon" }
|
||||
jay-wire-types = { version = "0.1.0", path = "crates/wire-types" }
|
||||
jay-wire-buf = { version = "0.1.0", path = "crates/wire-buf" }
|
||||
jay-tree-types = { version = "0.1.0", path = "crates/tree-types" }
|
||||
jay-eventfd-cache = { version = "0.1.0", path = "crates/eventfd-cache" }
|
||||
jay-wheel = { version = "0.1.0", path = "crates/wheel" }
|
||||
jay-cpu-worker = { version = "0.1.0", path = "crates/cpu-worker" }
|
||||
jay-sighand = { version = "0.1.0", path = "crates/sighand" }
|
||||
jay-pr-caps = { version = "0.1.0", path = "crates/pr-caps" }
|
||||
jay-bugs = { version = "0.1.0", path = "crates/bugs" }
|
||||
jay-logger = { version = "0.1.0", path = "crates/logger" }
|
||||
jay-video-types = { version = "0.1.0", path = "crates/video-types" }
|
||||
jay-output-types = { version = "0.1.0", path = "crates/output-types" }
|
||||
jay-input-types = { version = "0.1.0", path = "crates/input-types" }
|
||||
jay-keyboard = { version = "0.1.0", path = "crates/keyboard" }
|
||||
jay-gfx-types = { version = "0.1.0", path = "crates/gfx-types" }
|
||||
jay-theme = { version = "0.1.0", path = "crates/theme" }
|
||||
jay-clientmem = { version = "0.1.0", path = "crates/clientmem" }
|
||||
jay-allocator = { version = "0.1.0", path = "crates/allocator" }
|
||||
jay-output-schedule = { version = "0.1.0", path = "crates/output-schedule" }
|
||||
jay-drm-feedback = { version = "0.1.0", path = "crates/drm-feedback" }
|
||||
jay-udmabuf = { version = "0.1.0", path = "crates/udmabuf" }
|
||||
jay-damage = { version = "0.1.0", path = "crates/damage" }
|
||||
jay-pango = { version = "0.1.0", path = "crates/pango" }
|
||||
jay-libinput = { version = "0.1.0", path = "crates/libinput" }
|
||||
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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue