@@ -25,11 +25,6 @@ members = [
2525 " profiling" ,
2626]
2727
28- exclude = [
29- # Sprint 1 scaffold of Glue #1 (see .claude/plans/integration-plan.md §5).
30- " surrealdb-ractor" ,
31- ]
32-
3328[workspace .package ]
3429authors = [" Tobie Morgan Hitchcock <tobie@surrealdb.com>" ]
3530edition = " 2024"
@@ -505,30 +500,3 @@ panic = 'unwind'
505500# that crates.io 0.16 entry requires upstream lance-index to bump.
506501[patch .crates-io ]
507502ndarray = { git = " https://github.com/AdaWorldAPI/ndarray.git" }
508-
509- # ============================================================================
510- # Cross-repo git → local-path redirects (local dev convenience)
511- # ============================================================================
512- # When the four-repo workspace is checked out side-by-side at the standard
513- # /home/user/{ndarray, lance-graph, sea-orm, surrealdb} layout, these patches
514- # make local edits to ndarray + lance-graph-contract immediately visible to
515- # surrealdb-core without going through a remote push + commit-pin cycle.
516- #
517- # Cargo errors at resolve time if a patch target path is missing, so if you
518- # check out surrealdb in isolation, COMMENT THESE BLOCKS OUT (or use a
519- # top-level .cargo/config.toml override). The published surrealdb release
520- # does NOT ship these patches — they exist only on the four-repo dev branch.
521- #
522- # Pairs with the workspace.dependencies entries at the top of this file:
523- # - ndarray = { git = ".../ndarray.git" } → ../ndarray
524- # - lance-graph-contract = { git = ".../lance-graph.git" } → ../lance-graph/crates/lance-graph-contract
525- # ndarray is intentionally NOT patched here: the workspace already pulls the
526- # AdaWorldAPI fork via `git = "..."` AND `[patch.crates-io]` above redirects
527- # crates.io's ndarray to the same fork. Adding a third source for the same
528- # crate via path-patch produces a "previously selected package" conflict
529- # in Cargo.lock. If you want LOCAL edits to /home/user/ndarray to be picked
530- # up by surrealdb-core, edit the workspace dep at line ~154 to `path = "../ndarray"`
531- # directly (and pair with a matching change in `[patch.crates-io]`).
532-
533- [patch ."https://github .com/AdaWorldAPI/lance-graph .git" ]
534- lance-graph-contract = { path = " ../lance-graph/crates/lance-graph-contract" }
0 commit comments