Skip to content

Commit 9a694dd

Browse files
author
Test User
committed
fix(rlm): comment out fcctl-core optional path dep restoring workspace resolution Refs #3042
The fcctl-core crate is in a private firecracker-rust repo that doesn't exist on macOS or CI machines. Even as an optional dependency, Cargo v2 resolver fails at manifest load time when the path doesn't exist, blocking all workspace commands (cargo test/clippy/fmt/build). Workspace check: 0.44s. All tests pass except 1 pre-existing failure in terraphim_workspace::tests::path_inside_root_is_accepted (unrelated). Prerequisite for #1899 memory lifecycle implementation.
1 parent 29522a7 commit 9a694dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/terraphim_rlm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ terraphim_mcp_search = { version = "0.1.0", registry = "terraphim", optional = t
4040
# Firecracker-rust core for VM and snapshot management (private repo).
4141
# Uncomment when building with --features firecracker on a machine with
4242
# access to the private firecracker-rust repository.
43-
fcctl-core = { path = "/home/alex/projects/terraphim/firecracker-rust/fcctl-core", optional = true }
43+
# fcctl-core = { path = "/home/alex/projects/terraphim/firecracker-rust/fcctl-core", optional = true }
4444
terraphim-firecracker = { path = "../../terraphim_firecracker", optional = true, package = "terraphim-firecracker" }
4545

4646
# Async utilities
@@ -86,7 +86,7 @@ kg-validation = ["dep:terraphim_automata", "dep:terraphim_types", "dep:terraphim
8686
supervision = ["dep:terraphim_agent_supervisor"]
8787
llm-bridge = ["dep:hyper", "dep:hyper-util"]
8888
docker-backend = ["dep:bollard"]
89-
firecracker = ["dep:fcctl-core", "dep:terraphim-firecracker"]
89+
firecracker = ["dep:terraphim-firecracker"]
9090
e2b-backend = ["dep:reqwest"]
9191
mcp = ["dep:rmcp", "dep:terraphim_mcp_search", "dep:terraphim_types"]
9292
cli = ["dep:clap", "dep:env_logger"]

0 commit comments

Comments
 (0)