-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (43 loc) · 1.04 KB
/
Cargo.toml
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
[workspace]
members = [
"core/engine",
"cli",
"core/error",
"core/ast",
"tools/git",
"tools/logs", "core/shell",
]
resolver = "1"
[workspace.dependencies]
# Core dependencies
roan-engine = { path = "core/engine", version = "0.1.6" }
roan-error = { path = "core/error", version = "0.1.1" }
roan-ast = { path = "core/ast", version = "0.1.3" }
roan-shell = { path = "core/shell", version = "0.1.0" }
# Other dependencies
anyhow = "1.0.93"
colored = "2.1.0"
log = "0.4.22"
thiserror = "2.0.3"
bon = "2.3.0"
tracing = { version = "0.1.40", default-features = false, features = ["std"] }
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"chrono",
"time",
] }
tracing-appender = "0.2"
backtrace = "0.3.74"
clap = { version = "4.5.20", features = ["derive"] }
anstyle = "1.0.10"
tar = "0.4.42"
toml = "0.8.19"
serde = "1.0.215"
uuid = { version = "1.11.0", features = ["v4"] }
indexmap = "2.6.0"
anstream = "0.6.18"
toml_edit = "0.22.22"
octocrab = "0.42.0"
http-body-util = "0.1.2"
url = "2.5.3"
gethostname = "0.5.0"