Skip to content

Commit ed4375d

Browse files
authored
Merge pull request #69 from eqtylab/feat/catalog
feat: cupcake catalog
2 parents c7374a1 + 8b4dc26 commit ed4375d

29 files changed

Lines changed: 5833 additions & 4 deletions

Cargo.lock

Lines changed: 60 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cupcake-cli/Cargo.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ reqwest = { workspace = true }
3232
sha2 = { workspace = true }
3333
hex = { workspace = true }
3434

35+
# File system utilities
36+
walkdir = "2.5"
37+
38+
# Archive handling (for catalog package command)
39+
flate2 = "1.0"
40+
tar = "0.4"
41+
42+
# Version comparison
43+
semver = "1.0"
44+
3545
[[bin]]
3646
name = "cupcake"
3747
path = "src/main.rs"
@@ -43,4 +53,5 @@ serial_test = "3.2"
4353
[features]
4454
deterministic-tests = ["cupcake-core/deterministic-tests"]
4555
watchdog = ["cupcake-core/watchdog"]
46-
default = ["watchdog"]
56+
catalog = ["cupcake-core/catalog"]
57+
default = ["watchdog", "catalog"]

0 commit comments

Comments
 (0)