summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 11ce5f36ed29b971069f7bff77d7ca09ee38af62 (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
[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" }

[workspace.dependencies.tokio]
version = "1.52.3"
features = [
    "fs"
]