workspace: move crates under crates
This commit is contained in:
parent
0016bc8cf0
commit
6393fdf3c0
354 changed files with 102 additions and 102 deletions
178
Cargo.toml
178
Cargo.toml
|
|
@ -15,53 +15,53 @@ path = "src/main.rs"
|
|||
[workspace]
|
||||
resolver = "3"
|
||||
members = [
|
||||
"jay-config",
|
||||
"jay-config-schema",
|
||||
"geometry",
|
||||
"layout-animation",
|
||||
"formats",
|
||||
"edid",
|
||||
"units",
|
||||
"utils",
|
||||
"criteria",
|
||||
"cmm",
|
||||
"time",
|
||||
"tracy",
|
||||
"async-engine",
|
||||
"io-uring",
|
||||
"bufio",
|
||||
"dbus-core",
|
||||
"xcon",
|
||||
"wire-types",
|
||||
"wire-buf",
|
||||
"tree-types",
|
||||
"eventfd-cache",
|
||||
"wheel",
|
||||
"cpu-worker",
|
||||
"sighand",
|
||||
"pr-caps",
|
||||
"bugs",
|
||||
"logger",
|
||||
"video-types",
|
||||
"output-types",
|
||||
"input-types",
|
||||
"keyboard",
|
||||
"gfx-types",
|
||||
"theme",
|
||||
"clientmem",
|
||||
"allocator",
|
||||
"output-schedule",
|
||||
"drm-feedback",
|
||||
"udmabuf",
|
||||
"damage",
|
||||
"pango",
|
||||
"libinput",
|
||||
"toml-config",
|
||||
"toml-parser",
|
||||
"algorithms",
|
||||
"toml-spec",
|
||||
"wire-to-xml",
|
||||
"xml-to-wire",
|
||||
"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",
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
|
|
@ -72,48 +72,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-geometry = { version = "0.1.0", path = "geometry" }
|
||||
jay-layout-animation = { version = "0.1.0", path = "layout-animation" }
|
||||
jay-formats = { version = "0.1.0", path = "formats" }
|
||||
jay-edid = { version = "0.1.0", path = "edid" }
|
||||
jay-units = { version = "0.1.0", path = "units" }
|
||||
jay-utils = { version = "0.1.0", path = "utils" }
|
||||
jay-criteria = { version = "0.1.0", path = "criteria" }
|
||||
jay-cmm = { version = "0.1.0", path = "cmm" }
|
||||
jay-time = { version = "0.1.0", path = "time" }
|
||||
jay-tracy = { version = "0.1.0", path = "tracy" }
|
||||
jay-async-engine = { version = "0.1.0", path = "async-engine" }
|
||||
jay-io-uring = { version = "0.1.0", path = "io-uring" }
|
||||
jay-bufio = { version = "0.1.0", path = "bufio" }
|
||||
jay-dbus-core = { version = "0.1.0", path = "dbus-core" }
|
||||
jay-xcon = { version = "0.1.0", path = "xcon" }
|
||||
jay-wire-types = { version = "0.1.0", path = "wire-types" }
|
||||
jay-wire-buf = { version = "0.1.0", path = "wire-buf" }
|
||||
jay-tree-types = { version = "0.1.0", path = "tree-types" }
|
||||
jay-eventfd-cache = { version = "0.1.0", path = "eventfd-cache" }
|
||||
jay-wheel = { version = "0.1.0", path = "wheel" }
|
||||
jay-cpu-worker = { version = "0.1.0", path = "cpu-worker" }
|
||||
jay-sighand = { version = "0.1.0", path = "sighand" }
|
||||
jay-pr-caps = { version = "0.1.0", path = "pr-caps" }
|
||||
jay-bugs = { version = "0.1.0", path = "bugs" }
|
||||
jay-logger = { version = "0.1.0", path = "logger" }
|
||||
jay-video-types = { version = "0.1.0", path = "video-types" }
|
||||
jay-output-types = { version = "0.1.0", path = "output-types" }
|
||||
jay-input-types = { version = "0.1.0", path = "input-types" }
|
||||
jay-keyboard = { version = "0.1.0", path = "keyboard" }
|
||||
jay-gfx-types = { version = "0.1.0", path = "gfx-types" }
|
||||
jay-theme = { version = "0.1.0", path = "theme" }
|
||||
jay-clientmem = { version = "0.1.0", path = "clientmem" }
|
||||
jay-allocator = { version = "0.1.0", path = "allocator" }
|
||||
jay-output-schedule = { version = "0.1.0", path = "output-schedule" }
|
||||
jay-drm-feedback = { version = "0.1.0", path = "drm-feedback" }
|
||||
jay-udmabuf = { version = "0.1.0", path = "udmabuf" }
|
||||
jay-damage = { version = "0.1.0", path = "damage" }
|
||||
jay-pango = { version = "0.1.0", path = "pango" }
|
||||
jay-libinput = { version = "0.1.0", path = "libinput" }
|
||||
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" }
|
||||
|
||||
uapi = "0.2.13"
|
||||
thiserror = "2.0.11"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue