-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (58 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
71 lines (58 loc) · 1.36 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "hymod"
version = "0.3.6"
edition = "2021"
[[bin]]
name = "hymod"
path = "cli/src/main.rs"
[[test]]
name = "new_integration"
path = "cli/tests/new_integration.rs"
[[test]]
name = "build_integration"
path = "cli/tests/build_integration.rs"
[[test]]
name = "link_integration"
path = "cli/tests/link_integration.rs"
[[test]]
name = "dev_integration"
path = "cli/tests/dev_integration.rs"
[[test]]
name = "deploy_integration"
path = "cli/tests/deploy_integration.rs"
[[test]]
name = "server_integration"
path = "cli/tests/server_integration.rs"
[[test]]
name = "config_integration"
path = "cli/tests/config_integration.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
features-new = { path = "features/new" }
features-build = { path = "features/build" }
features-link = { path = "features/link" }
features-dev = { path = "features/dev" }
features-deploy = { path = "features/deploy" }
features-server = { path = "features/server" }
core-plan = { path = "core/plan" }
core-ops = { path = "core/ops" }
core-config = { path = "core/config" }
anyhow = "1.0"
[dev-dependencies]
tempfile = "3.8"
assert_cmd = "2.0"
predicates = "3.1"
[workspace]
resolver = "2"
members = [
"core/config",
"core/plan",
"core/ops",
"core/path",
"features/new",
"features/build",
"features/link",
"features/dev",
"features/deploy",
"features/server"
]