Skip to content

Commit 474a226

Browse files
committed
fix(ci): comment out unpublished dependencies for crates.io
- Comment out grepapp_haystack and terraphim_atomic_qdrant_rust_client dependencies - These crates are not published to crates.io yet - Features atomic and grepapp are disabled until dependencies are published - Fixes crates publishing failure in v1.4.8 release workflow Terraphim AI
1 parent c5b389e commit 474a226

3 files changed

Lines changed: 8 additions & 13 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exclude = ["crates/terraphim_agent_application", "crates/terraphim_truthforge",
55
default-members = ["terraphim_server"]
66

77
[workspace.package]
8-
version = "1.4.8"
8+
version = "1.4.9"
99
edition = "2024"
1010

1111
[workspace.dependencies]

crates/terraphim_middleware/Cargo.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "1.0.0" }
1818
terraphim_automata = { path = "../terraphim_automata", version = "1.0.0", features = ["tokio-runtime"] }
1919
terraphim_types = { path = "../terraphim_types", version = "1.0.0" }
2020
terraphim_persistence = { path = "../terraphim_persistence", version = "1.0.0" }
21-
# Atomic Data Server haystack integration
22-
terraphim_atomic_client = { path = "../terraphim_atomic_client", version = "1.0.0", features = ["native"], optional = true }
23-
# grep.app haystack integration
24-
grepapp_haystack = { path = "../haystack_grepapp", version = "1.0.0", optional = true }
21+
# NOTE: Atomic Data Server and grep.app haystacks commented out for crates.io publishing (not published yet)
22+
# terraphim_atomic_client = { path = "../terraphim_atomic_client", version = "1.0.0", features = ["native"], optional = true }
23+
# grepapp_haystack = { path = "../haystack_grepapp", version = "1.0.0", optional = true }
2524
claude-log-analyzer = { path = "../claude-log-analyzer", version = "1.0.0", features = ["connectors"], optional = true }
2625
jiff = { version = "0.1", optional = true }
2726
home = { version = "0.5", optional = true }
@@ -60,10 +59,9 @@ tempfile = "3.23"
6059

6160
[features]
6261
default = []
63-
# Enable Atomic Data Server haystack integration
64-
atomic = ["dep:terraphim_atomic_client"]
65-
# Enable grep.app haystack integration
66-
grepapp = ["dep:grepapp_haystack"]
62+
# NOTE: atomic and grepapp features disabled for crates.io publishing (dependencies not published yet)
63+
# atomic = ["dep:terraphim_atomic_client"]
64+
# grepapp = ["dep:grepapp_haystack"]
6765
# Enable AI coding assistant session haystack (Claude Code, OpenCode, Cursor, Aider, Codex)
6866
ai-assistant = ["claude-log-analyzer", "jiff", "home"]
6967
# Enable openrouter integration

0 commit comments

Comments
 (0)