-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (54 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
71 lines (54 loc) · 1.4 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
[workspace]
resolver = "2"
members = [
"crates/scaffolder-core",
"crates/motia-tools",
"crates/iii-tools",
]
[workspace.package]
version = "0.6.3"
edition = "2021"
authors = ["Motia Dev Team"]
[workspace.dependencies]
# Interactive prompts (Charm-style) - optional for TUI feature
cliclack = "0.3"
console = "0.16"
# Signal handling for clean exit
ctrlc = "3"
# Terminal styling
colored = "3"
# Async runtime
tokio = { version = "1", features = ["full", "process"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
# HTTP client for remote templates
reqwest = { version = "0.13", features = ["json"] }
# URL parsing and manipulation
url = "2"
# CLI argument parsing
clap = { version = "4", features = ["derive"] }
# Error handling
anyhow = "1"
thiserror = "2"
# Version comparison
semver = "1"
# Directory operations
walkdir = "2"
# Zip archive extraction
zip = "8.1"
# Open URLs in browser
open = "5"
# Telemetry / project identity (reads engine's telemetry.yaml)
dirs = "6"
uuid = { version = "1", features = ["v4"] }
serde_json = "1"
tempfile = "3"
wiremock = "0.6"
# Local crates
scaffolder-core = { path = "crates/scaffolder-core" }
[profile.release]
opt-level = "z" # Optimize for size
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce parallel code generation units
strip = true # Strip symbols from binary (Rust 1.59+)