blob: 4ca7eb68947977ed9556c2ad161b64a99c8ece0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
[workspace]
resolver = "2"
members = [
"rola-bucket",
"rola-cli",
"rola-utils/constants",
"rola-utils/functions",
"rola-utils/macros",
"rola-utils/space-system",
"rola-utils/space-system/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" }
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"
features = [
"fs",
"rt",
"rt-multi-thread",
"macros"
]
|