Skip to content

Commit 27f8d27

Browse files
committed
fix(ci): disable terraphim_sessions dependency for crates.io publishing
terraphim_sessions is not yet published to crates.io. Commented out the dependency and repl-sessions feature until it can be published.
1 parent 063e193 commit 27f8d27

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

crates/terraphim_agent/Cargo.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ readme = "../../README.md"
1515
default = ["repl-interactive"]
1616
repl = ["dep:rustyline", "dep:colored", "dep:comfy-table", "dep:indicatif", "dep:dirs"]
1717
repl-interactive = ["repl", "dep:atty"]
18-
repl-full = ["repl", "repl-chat", "repl-mcp", "repl-file", "repl-custom", "repl-web", "repl-sessions", "repl-interactive"]
18+
# NOTE: repl-sessions removed from repl-full for crates.io publishing (terraphim_sessions not published yet)
19+
repl-full = ["repl", "repl-chat", "repl-mcp", "repl-file", "repl-custom", "repl-web", "repl-interactive"]
1920
repl-chat = ["repl"] # Chat functionality
2021
repl-mcp = ["repl"] # MCP tools integration
2122
repl-file = ["repl"] # Enhanced file operations
2223
repl-custom = ["repl"] # Markdown-defined custom commands
2324
repl-web = ["repl"] # Web operations and configuration
24-
repl-sessions = ["repl", "dep:terraphim_sessions"] # Session history search
25+
# NOTE: repl-sessions disabled for crates.io publishing (terraphim_sessions not published yet)
26+
# repl-sessions = ["repl", "dep:terraphim_sessions"] # Session history search
2527

2628
[dependencies]
2729
anyhow = "1.0"
@@ -67,8 +69,9 @@ terraphim_automata = { path = "../terraphim_automata", version = "1.0.0" }
6769
terraphim_service = { path = "../terraphim_service", version = "1.0.0" }
6870
terraphim_middleware = { path = "../terraphim_middleware", version = "1.0.0" }
6971
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "1.0.0" }
70-
terraphim_hooks = { path = "../terraphim_hooks", version = "1.2.3" }
71-
terraphim_sessions = { path = "../terraphim_sessions", version = "0.1.0", optional = true, features = ["cla-full"] }
72+
terraphim_hooks = { path = "../terraphim_hooks", version = "1.0.0" }
73+
# NOTE: terraphim_sessions commented out for crates.io publishing (not published yet)
74+
# terraphim_sessions = { path = "../terraphim_sessions", version = "0.1.0", optional = true, features = ["cla-full"] }
7275

7376
[dev-dependencies]
7477
serial_test = "3.0"

0 commit comments

Comments
 (0)