Move crates to the repository root (#302)

Follows the convention proposed in this discussion:

https://xi.zulipchat.com/#narrow/stream/419691-linebender/topic/Standardizing.20multi-package.20repos
This commit is contained in:
Olivier FAURE 2024-05-11 23:59:03 +02:00 committed by GitHub
parent 9e697cc06f
commit ef5d36e8fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
230 changed files with 11 additions and 11 deletions

View File

@ -1,15 +1,15 @@
[workspace] [workspace]
resolver = "2" resolver = "2"
members = [ members = [
"crates/xilem_core", "xilem_core",
"crates/xilem_web", "xilem_web",
"crates/xilem_web/web_examples/counter", "xilem_web/web_examples/counter",
"crates/xilem_web/web_examples/counter_custom_element", "xilem_web/web_examples/counter_custom_element",
"crates/xilem_web/web_examples/todomvc", "xilem_web/web_examples/todomvc",
"crates/xilem_web/web_examples/mathml_svg", "xilem_web/web_examples/mathml_svg",
"crates/xilem_web/web_examples/svgtoy", "xilem_web/web_examples/svgtoy",
"crates/masonry", "masonry",
"crates/xilem_masonry", "xilem",
] ]
[workspace.package] [workspace.package]
@ -22,8 +22,8 @@ homepage = "https://xilem.dev/"
clippy.semicolon_if_nothing_returned = "warn" clippy.semicolon_if_nothing_returned = "warn"
[workspace.dependencies] [workspace.dependencies]
xilem_core = { version = "0.1.0", path = "crates/xilem_core" } xilem_core = { version = "0.1.0", path = "xilem_core" }
masonry = { version = "0.2.0", path = "crates/masonry" } masonry = { version = "0.2.0", path = "masonry" }
vello = "0.1.0" vello = "0.1.0"
wgpu = "0.19.4" wgpu = "0.19.4"
kurbo = "0.11.0" kurbo = "0.11.0"

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Some files were not shown because too many files have changed in this diff Show More