-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 917 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 917 Bytes
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
[workspace]
resolver = "2"
members = ["crates/cli", "crates/core", "crates/ops", "plugins/aws-ssm"]
default-members = ["crates/cli", "crates/core", "crates/ops"]
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.53", features = ["derive"] }
console = "0.16.2"
dialoguer = "0.12.0"
indicatif = "0.18.3"
tera = "1.19.1"
wasmtime = { version = "24.0.7", features = ["component-model"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"
serde_yml = "0.0.12"
thiserror = "2.0.17"
tokio = { version = "1.48.0", features = ["full"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = [
"env-filter",
"fmt",
"json",
] }
assert_cmd = "2.1.1"
predicates = "3.1.3"
tempfile = "3.24.0"
walkdir = "2.4.0"
repo-weaver-core = { path = "crates/core" }
repo-weaver-ops = { path = "crates/ops" }