summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml16
1 files changed, 14 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 7a1522c..4ca7eb6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,9 +3,11 @@ resolver = "2"
members = [
"rola-bucket",
"rola-cli",
- "rola-vcs/internal_macros",
+ "rola-utils/constants",
"rola-utils/functions",
"rola-utils/macros",
+ "rola-utils/space-system",
+ "rola-utils/space-system/macros",
"rola-draft",
"rola-vcs",
]
@@ -19,13 +21,23 @@ license = "MIT"
[workspace.dependencies]
rorolala = { path = "rola-vcs" }
-rorolala_internal_macros = { path = "rola-vcs/internal_macros" }
+
+quote = "1.0.45"
+syn = "2.0.118"
+proc-macro2 = "1.0.106"
+
+shared_constants = { path = "rola-utils/constants" }
shared_functions = { path = "rola-utils/functions" }
shared_macros = { path = "rola-utils/macros" }
+
+space-system = { path = "rola-utils/space-system" }
+space-macros = { path = "rola-utils/space-system/macros" }
+
rola-bucket = { path = "rola-bucket" }
rola-draft = { path = "rola-draft" }
thiserror = "2.0.18"
+just_fmt = "0.1.2"
[workspace.dependencies.tokio]
version = "1.52.3"