all: split reusable components into workspace crates
This commit is contained in:
parent
2a079ed800
commit
657e7ce2f7
225 changed files with 7422 additions and 17602 deletions
29
Cargo.toml
29
Cargo.toml
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue