From 8f03cc6d4c539f8dbc9bc44f79d98687dc94152d Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Sat, 6 Sep 2025 21:23:39 -0400 Subject: [PATCH] x --- .gitmodules | 6 +++--- .tasks/CORE-000-vdfs-core.md | 2 ++ Cargo.toml | 5 +++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index 0764cd946..c0a34b2e9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "spacedrive-cloud"] - path = spacedrive-cloud - url = ./spacedrive-cloud +[submodule "apps/cloud"] + path = apps/cloud + url = ./apps/cloud diff --git a/.tasks/CORE-000-vdfs-core.md b/.tasks/CORE-000-vdfs-core.md index 5e40c4cb7..2970e5ca7 100644 --- a/.tasks/CORE-000-vdfs-core.md +++ b/.tasks/CORE-000-vdfs-core.md @@ -11,3 +11,5 @@ whitepaper: Section 4.1 ## Description This epic covers the foundational components of the Virtual Distributed File System (VDFS). It establishes the core data models and abstractions that allow Spacedrive to create a unified, content-aware view of a user's data across all their devices. + +This is the first task in the development of Spacedrive V2. diff --git a/Cargo.toml b/Cargo.toml index d09261a6d..bdda88efe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [workspace] members = [ + "apps/cloud", "apps/desktop/crates/*", "apps/desktop/src-tauri", "apps/mobile/modules/sd-core/android/crate", @@ -9,7 +10,7 @@ members = [ "core", "core/crates/*", "crates/*" -, "spacedrive-cloud"] +] resolver = "2" [workspace.package] @@ -20,7 +21,7 @@ rust-version = "1.81" [workspace.dependencies] # First party dependencies -sd-cloud-schema = { git = "https://github.com/spacedriveapp/cloud-services-schema", rev = "515ba740ea" } +# sd-cloud-schema = { git = "https://github.com/spacedriveapp/cloud-services-schema", rev = "515ba740ea" } # Third party dependencies used by one or more of our crates anyhow = "1.0.94"