diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-17 21:33:40 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-17 21:57:13 +0800 |
| commit | ad0943f88ba9f5ed6eae198ecb4835c0f44701de (patch) | |
| tree | 6a8eb1fee42e7ee173e74788dafeb27c52429683 /Cargo.toml | |
chore: initialize project structure and add core modules
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7f14aac --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[workspace] +resolver = "2" +members = [ + "rola-bucket", + "rola-cli", + "rola-vcs/internal_macros", + "rola-utils/functions", + "rola-utils/macros", + "rola-draft", + "rola-vcs", +] +exclude = ["rola-devtools"] + +[workspace.package] +version = "0.1.0" +edition = "2024" +authors = ["RoroLalaVCS", "Weicao-CatilGrass <catil_grass@qq.com>"] +license = "MIT" + +[workspace.dependencies] +rorolala = { path = "rola-vcs" } +rorolala_internal_macros = { path = "rola-vcs/internal_macros" } +shared_functions = { path = "rola-utils/functions" } +shared_macros = { path = "rola-utils/macros" } +rola-bucket = { path = "rola-bucket" } +rola-draft = { path = "rola-draft" } |
