refactor(workspace): move crates under crates/

This commit is contained in:
2026-01-30 02:09:10 +05:30
parent 97db96b105
commit 72bf38a7ff
44 changed files with 9 additions and 128 deletions

View File

@@ -1,20 +1,21 @@
[workspace]
members = [
".",
"api",
"typegen",
"ui-gpui",
"ui-iced",
"store",
"gst",
"crates/api",
"crates/gst",
"crates/iced-video",
"crates/store",
"examples/hdr-gstreamer-wgpu",
]
[workspace.dependencies]
iced = { version = "0.14.0" }
gst = { version = "0.1.0", path = "gst" }
gst = { version = "0.1.0", path = "crates/gst" }
iced_wgpu = { version = "0.14.0" }
iced-video = { version = "0.1.0", path = "crates/iced-video" }
api = { version = "0.1.0", path = "crates/api" }
[patch.crates-io]
iced_wgpu = { git = "https://github.com/uttarayan21/iced", branch = "0.14" }
@@ -30,7 +31,7 @@ edition = "2024"
license = "MIT"
[dependencies]
api = { version = "0.1.0", path = "api" }
api = { version = "0.1.0", path = "crates/api" }
bytemuck = { version = "1.24.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
clap-verbosity-flag = { version = "3.0.4", features = ["tracing"] }