1
0
Fork 0
forked from wry/wry

all: split reusable components into workspace crates

This commit is contained in:
kossLAN 2026-05-29 09:14:53 -04:00
parent 2a079ed800
commit 657e7ce2f7
No known key found for this signature in database
225 changed files with 7422 additions and 17602 deletions

View file

@ -13,7 +13,25 @@ name = "jay"
path = "src/main.rs"
[workspace]
members = ["jay-config", "toml-config", "algorithms", "toml-spec", "wire-to-xml", "xml-to-wire"]
resolver = "3"
members = [
"jay-config",
"jay-config-schema",
"geometry",
"layout-animation",
"formats",
"edid",
"units",
"utils",
"criteria",
"cmm",
"time",
"toml-config",
"algorithms",
"toml-spec",
"wire-to-xml",
"xml-to-wire",
]
[profile.release]
panic = "abort"
@ -26,6 +44,15 @@ panic = "abort"
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" }
uapi = "0.2.13"
thiserror = "2.0.11"