@@ -15,13 +15,15 @@ readme = "../../README.md"
1515default = [" repl-interactive" ]
1616repl = [" dep:rustyline" , " dep:colored" , " dep:comfy-table" , " dep:indicatif" , " dep:dirs" ]
1717repl-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" ]
1920repl-chat = [" repl" ] # Chat functionality
2021repl-mcp = [" repl" ] # MCP tools integration
2122repl-file = [" repl" ] # Enhanced file operations
2223repl-custom = [" repl" ] # Markdown-defined custom commands
2324repl-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 ]
2729anyhow = " 1.0"
@@ -67,8 +69,9 @@ terraphim_automata = { path = "../terraphim_automata", version = "1.0.0" }
6769terraphim_service = { path = " ../terraphim_service" , version = " 1.0.0" }
6870terraphim_middleware = { path = " ../terraphim_middleware" , version = " 1.0.0" }
6971terraphim_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 ]
7477serial_test = " 3.0"
0 commit comments