Skip to content

Commit 2b92fa4

Browse files
noahgiftclaude
andcommitted
fix(ci): Use crates.io for all external dependencies (Refs DEPYLER-0643)
- trueno-viz: path -> 0.1.2 - entrenar: path -> 0.2.2 - alimentar: path -> 0.2.2 - aprender: path -> 0.14.0 - verificar: 0.3 -> 0.5.0 All versions match latest published to crates.io. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 494b61f commit 2b92fa4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

crates/depyler-oracle/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ path = "src/bin/extract_training_data.rs"
2323
# Depyler core for error types
2424
depyler-core = { path = "../depyler-core" }
2525

26-
# ML models from aprender (local dev)
26+
# ML models from aprender
2727
# Features: parallel (rayon), gpu (wgpu via trueno)
28-
aprender = { path = "../../../aprender", default-features = true }
28+
aprender = { version = "0.14.0", default-features = true }
2929

3030
# CITL training framework for pattern store (Issue #172)
31-
entrenar = { path = "../../../entrenar", features = ["citl"] }
31+
entrenar = { version = "0.2.2", features = ["citl"] }
3232

3333
# Data loading and versioning
34-
alimentar = { path = "../../../alimentar" }
34+
alimentar = "0.2.2"
3535
arrow = { version = "54", default-features = false, features = ["prettyprint"] }
3636
parquet = { version = "54", default-features = false, features = ["arrow", "snap"] }
3737

@@ -75,4 +75,4 @@ tempfile.workspace = true
7575
proptest.workspace = true
7676

7777
# Synthetic data factory for corpus generation
78-
verificar = "0.3"
78+
verificar = "0.5.0"

crates/depyler/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ depyler-annotations = { version = "3.19.18", path = "../depyler-annotations" }
3131
depyler-quality = { version = "3.19.18", path = "../depyler-quality" }
3232
depyler-oracle = { version = "3.21.0", path = "../depyler-oracle" }
3333
depyler-ruchy = { version = "3.19.18", path = "../depyler-ruchy", optional = true }
34-
trueno-viz = { path = "/home/noah/src/trueno-viz" }
35-
entrenar = { path = "/home/noah/src/entrenar" }
36-
alimentar = { path = "/home/noah/src/alimentar", features = ["default"] }
34+
trueno-viz = "0.1.2"
35+
entrenar = "0.2.2"
36+
alimentar = { version = "0.2.2", features = ["default"] }
3737
arrow = { version = "54", default-features = false, features = ["json"] }
3838

3939
anyhow.workspace = true

0 commit comments

Comments
 (0)