diff --git a/chrs-agent/src/lib.rs b/chrs-agent/src/lib.rs index 25b856c5..2b7876de 100644 --- a/chrs-agent/src/lib.rs +++ b/chrs-agent/src/lib.rs @@ -9,7 +9,7 @@ use chrs_prompts::get_system_prompt; use chrs_code_edit::WorktreeManager; use chrs_discovery::{SwarmManager, BusHandle, BusMessage}; use chrs_election::ElectionManager; -use chrono::{Utc, DateTime}; +use chrono::{Utc, DateTime, Duration as ChronoDuration}; use std::path::Path; use std::process::Command; use std::time::Duration; @@ -57,7 +57,7 @@ impl CHORUSAgent { }; let graph = DoltGraph::init(&graph_path)?; let code_edit = WorktreeManager::open(&repo_path).ok(); - // Ensure tables exist + let _ = graph.create_table("task_log", "id VARCHAR(255) PRIMARY KEY, topic TEXT, payload TEXT, received_at TEXT"); let _ = graph.create_table("execution_results", "id VARCHAR(255) PRIMARY KEY, task_id TEXT, stdout TEXT, stderr TEXT, duration_ms INT"); let _ = graph.create_table("api_call_log", "id VARCHAR(255) PRIMARY KEY, agent_id TEXT, called_at TEXT, status TEXT"); @@ -71,7 +71,6 @@ impl CHORUSAgent { let executor = DockerExecutor::new()?; let system_prompt = get_system_prompt(role).to_string(); - // Initialize P2P Bus with a small randomized delay to prevent simultaneous swarm storms let delay = rand::thread_rng().gen_range(1..5); println!("[AGENT {}] Waiting {}s for P2P bootstrap...", id, delay); sleep(Duration::from_secs(delay)).await; @@ -79,7 +78,6 @@ impl CHORUSAgent { let (bus_tx, bus_rx) = mpsc::unbounded_channel(); let bus = SwarmManager::start_bus(bus_tx).await?; - // Initialize Election Manager let election = ElectionManager::new(id, bus.clone()); Ok(Self { @@ -100,7 +98,34 @@ impl CHORUSAgent { }) } - /// Agent's 'thinking' phase with cooperative throttling and jittered backoff. + pub fn check_global_throttle(&self) -> bool { + let one_minute_ago = Utc::now() - ChronoDuration::seconds(60); + let query = format!( + "SELECT count(*) FROM api_call_log WHERE called_at > '{}'", + one_minute_ago.to_rfc3339() + ); + + match self.graph.query(&query) { + Ok(result) => { + let count: u32 = result + .split_whitespace() + .filter_map(|s| s.parse().ok()) + .next() + .unwrap_or(0); + + if count >= 35 { + println!("[AGENT {}] Global throttle active: {} calls in last minute.", self.id, count); + return true; + } + false + } + Err(e) => { + eprintln!("[AGENT {}] Failed to check global throttle: {}", self.id, e); + false + } + } + } + pub async fn think(&self, message: &str) -> String { println!("[AGENT {}] Thinking as {:?}...", self.id, self.role); @@ -109,11 +134,10 @@ impl CHORUSAgent { let base_delay = Duration::from_secs(2); loop { - // 1. Cooperative Throttling: Check global cluster load in the last minute - // In a real implementation, we would use: SELECT count(*) FROM api_call_log WHERE called_at > now - 60s - // For now, we simulate a check that respects the 40 calls/min limit. + while self.check_global_throttle() { + sleep(Duration::from_secs(2)).await; + } - // 2. Log Attempt let call_id = Uuid::new_v4().to_string(); let log_entry = serde_json::json!({ "id": call_id, @@ -123,7 +147,6 @@ impl CHORUSAgent { }); let _ = self.graph.insert_node("api_call_log", log_entry); - // 3. Perform the actual API call to opencode let output = Command::new("opencode") .args(&[ "run", @@ -158,7 +181,6 @@ impl CHORUSAgent { return format!("Error: Maximum thinking attempts reached. Last error: {}", error_msg); } - // 4. Jittered Exponential Backoff let jitter = rand::thread_rng().gen_range(0..1000); let delay = base_delay.mul_f64(2.0_f64.powi(attempts - 1)) + Duration::from_millis(jitter); @@ -169,7 +191,6 @@ impl CHORUSAgent { } } - /// Main execution loop for the agent. pub async fn run_loop(&mut self) { println!("[AGENT {}] Role: {:?} starting...", self.id, self.role); @@ -179,21 +200,15 @@ impl CHORUSAgent { loop { tokio::select! { - // 1. Periodic Heartbeat (if leader) _ = heartbeat_tick.tick() => { let _ = self.election.send_heartbeat().await; let heartbeat_payload = serde_json::to_vec(&self.council.local_peer).unwrap(); let _ = self.bus.publish("chorus-heartbeat", heartbeat_payload); } - - // 2. Periodic Election State Machine Step _ = election_tick.tick() => { let _ = self.election.run_step().await; } - - // 3. Check for direct messages (Mailbox) _ = mailbox_tick.tick() => { - println!("[AGENT {}] Polling mailbox...", self.id); match self.mailbox.receive_pending(&self.id) { Ok(messages) => { for msg in messages { @@ -203,8 +218,6 @@ impl CHORUSAgent { Err(e) => eprintln!("[AGENT {}] Mailbox task error: {}", self.id, e), } } - - // 4. Check P2P Bus for messages msg = self.bus_rx.recv() => { if let Some(msg) = msg { if msg.topic == "chorus-heartbeat" { @@ -219,7 +232,6 @@ impl CHORUSAgent { } else if msg.topic == "CHORUS/election/v1" || msg.topic == "CHORUS/admin/heartbeat/v1" { let _ = self.election.process_message(&msg).await; } else if msg.topic == "chorus-global" { - // Check if it is a BeatFrame or a StatusClaim (for P2P sync) if let Ok(frame) = serde_json::from_slice::(&msg.payload) { self.handle_beat(frame).await; } @@ -239,8 +251,6 @@ impl CHORUSAgent { state: if self.election.is_leader() { "leading".into() } else { "idle".into() }, progress: 1.0, }; - - // 1. Send to Mailbox let msg = Message { id: Uuid::new_v4(), from_peer: self.id.clone(), @@ -251,8 +261,6 @@ impl CHORUSAgent { read_at: None, }; let _ = self.mailbox.send(&msg); - - // 2. Publish to P2P Bus let payload = serde_json::to_vec(&claim).unwrap(); let _ = self.bus.publish("chorus-global", payload); } @@ -269,7 +277,6 @@ impl CHORUSAgent { let _ = self.graph.insert_node("task_log", log_entry); let _ = self.graph.commit(&format!("Logged task: {}", msg.topic)); - // 1. Delegation logic (Leader or Senior Architect) if msg.topic == "task" && (self.election.is_leader() || self.role == Role::SeniorSoftwareArchitect || self.role == Role::Architect) { let peers_vec: Vec = self.peers.values().cloned().collect(); if !peers_vec.is_empty() { @@ -281,10 +288,14 @@ impl CHORUSAgent { } } - // 2. Execution logic - if msg.topic == "implementation_task" || msg.topic == "execution_task" || msg.topic == "planning_task" { + let is_specialized_task = match msg.topic.as_str() { + "implementation_task" | "execution_task" | "planning_task" | + "review_task" | "test_task" | "security_audit_task" | "documentation_task" => true, + _ => false, + }; + + if is_specialized_task { let workspace_path = if let Some(mgr) = &self.code_edit { - println!("[AGENT {}] Preparing workspace for task...", self.id); let _ = mgr.spawn_task_branch(&msg.id.to_string()); let _ = mgr.checkout_branch(&format!("task/{}", msg.id)); Some(mgr.repo_path().to_string_lossy().to_string()) @@ -293,9 +304,8 @@ impl CHORUSAgent { }; let task_desc = msg.payload["description"].as_str().unwrap_or("No description provided"); - let task_instr = msg.payload["instruction"].as_str().unwrap_or("Execute the task."); + let task_instr = msg.payload["instruction"].as_str().unwrap_or("Execute task."); - println!("[AGENT {}] Incepting sub-agent for: {}", self.id, task_desc); let reasoning = self.think(task_desc).await; let req = TaskRequest { @@ -305,9 +315,9 @@ impl CHORUSAgent { workspace_path, timeout_secs: 600, }; + match self.executor.execute(req).await { Ok(res) => { - println!("[AGENT {}] Sub-agent task completed.", self.id); let result_entry = serde_json::json!({ "id": Uuid::new_v4().to_string(), "task_id": msg.id.to_string(), @@ -316,17 +326,12 @@ impl CHORUSAgent { "duration_ms": res.duration_ms }); let _ = self.graph.insert_node("execution_results", result_entry); - let _ = self.graph.commit(&format!("Recorded sub-agent results for task: {}", msg.id)); + let _ = self.graph.commit(&format!("Recorded results for task: {}", msg.id)); } Err(e) => eprintln!("[AGENT {}] Execution error: {}", self.id, e), } } - if msg.topic == "security_audit_task" { - println!("[AGENT {}] Performing security audit...", self.id); - let _reasoning = self.think("Perform security audit on latest implementation").await; - } - let _ = self.mailbox.mark_read(msg.id); } } diff --git a/chrs-graph/src/lib.rs b/chrs-graph/src/lib.rs index 1d4b2a7e..af044407 100644 --- a/chrs-graph/src/lib.rs +++ b/chrs-graph/src/lib.rs @@ -66,12 +66,8 @@ impl DoltGraph { }) } - /// Execute a Dolt command with the specified arguments. - /// - /// This helper centralises command execution and error handling. It runs `dolt` with the - /// provided argument slice, captures stdout/stderr, and returns `GraphError::CommandFailed` - /// when the command exits with a non‑zero status. - fn run_cmd(&self, args: &[&str]) -> Result<(), GraphError> { + /// Execute a Dolt command with the specified arguments and return stdout. + fn run_cmd_capture(&self, args: &[&str]) -> Result { let output = Command::new("dolt") .args(args) .current_dir(&self.repo_path) @@ -80,9 +76,20 @@ impl DoltGraph { let stderr = String::from_utf8_lossy(&output.stderr); return Err(GraphError::CommandFailed(stderr.to_string())); } + Ok(String::from_utf8_lossy(&output.stdout).to_string()) + } + + /// Execute a Dolt command with the specified arguments. + fn run_cmd(&self, args: &[&str]) -> Result<(), GraphError> { + self.run_cmd_capture(args)?; Ok(()) } + /// Executes a SQL query and returns the raw string result. + pub fn query(&self, sql: &str) -> Result { + self.run_cmd_capture(&["sql", "-q", sql]) + } + /// Stage all changes and commit them with the provided `message`. /// /// The method first runs `dolt add -A` to stage modifications, then `dolt commit -m`. diff --git a/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/bin-chrs-big-council-demo b/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/bin-chrs-big-council-demo new file mode 100644 index 00000000..13ef2a2d --- /dev/null +++ b/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/bin-chrs-big-council-demo @@ -0,0 +1 @@ +e57a9792c601cd96 \ No newline at end of file diff --git a/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/bin-chrs-big-council-demo.json b/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/bin-chrs-big-council-demo.json new file mode 100644 index 00000000..5efa4491 --- /dev/null +++ b/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/bin-chrs-big-council-demo.json @@ -0,0 +1 @@ +{"rustc":15597765236515928571,"features":"[]","declared_features":"[]","target":11189401877460069322,"profile":17672942494452627365,"path":15586282002135408897,"deps":[[303782240219042746,"chrs_council",false,12015880436388741738],[2435133206607685902,"chrs_agent",false,7027476187743864158],[3856126590694406759,"chrono",false,10274387264389562704],[6743343474447045702,"chrs_mail",false,12213287967330248873],[9462185088798423431,"uuid",false,17971560908104734438],[12891030758458664808,"tokio",false,6922689052733440109],[13795362694956882968,"serde_json",false,10211988446099616948]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/dep-bin-chrs-big-council-demo","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/dep-bin-chrs-big-council-demo b/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/dep-bin-chrs-big-council-demo new file mode 100644 index 00000000..5c54f74a Binary files /dev/null and b/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/dep-bin-chrs-big-council-demo differ diff --git a/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/invoked.timestamp b/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/invoked.timestamp new file mode 100644 index 00000000..e00328da --- /dev/null +++ b/target/debug/.fingerprint/chrs-big-council-demo-7ccd79fb1a9fe3b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/chrs-council-demo-b3dfb4093c7261f1/output-bin-chrs-council-demo b/target/debug/.fingerprint/chrs-council-demo-b3dfb4093c7261f1/output-bin-chrs-council-demo index d7281c9e..4231f8c8 100644 --- a/target/debug/.fingerprint/chrs-council-demo-b3dfb4093c7261f1/output-bin-chrs-council-demo +++ b/target/debug/.fingerprint/chrs-council-demo-b3dfb4093c7261f1/output-bin-chrs-council-demo @@ -1,7 +1,7 @@ {"$message_type":"diagnostic","message":"unused imports: `Mailbox` and `Message`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":69,"byte_end":76,"line_start":3,"line_end":3,"column_start":17,"column_end":24,"is_primary":true,"text":[{"text":"use chrs_mail::{Mailbox, Message};","highlight_start":17,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"chrs-council-demo/src/main.rs","byte_start":78,"byte_end":85,"line_start":3,"line_end":3,"column_start":26,"column_end":33,"is_primary":true,"text":[{"text":"use chrs_mail::{Mailbox, Message};","highlight_start":26,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":53,"byte_end":88,"line_start":3,"line_end":4,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use chrs_mail::{Mailbox, Message};","highlight_start":1,"highlight_end":35},{"text":"use chrono::Utc;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused imports: `Mailbox` and `Message`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:3:17\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m3\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse chrs_mail::{Mailbox, Message};\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_imports)]` on by default\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"unused import: `chrono::Utc`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":92,"byte_end":103,"line_start":4,"line_end":4,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":"use chrono::Utc;","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":88,"byte_end":105,"line_start":4,"line_end":5,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use chrono::Utc;","highlight_start":1,"highlight_end":17},{"text":"use std::fs;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `chrono::Utc`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:4:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m4\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse chrono::Utc;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"unused import: `uuid::Uuid`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":179,"byte_end":189,"line_start":8,"line_end":8,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":"use uuid::Uuid;","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":175,"byte_end":191,"line_start":8,"line_end":9,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use uuid::Uuid;","highlight_start":1,"highlight_end":16},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: unused import: `uuid::Uuid`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:8:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m8\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0muse uuid::Uuid;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":634,"byte_end":647,"line_start":23,"line_end":23,"column_start":9,"column_end":22,"is_primary":true,"text":[{"text":" let mut architect = CHORUSAgent::init(\"agent-architect\", Role::Architect, &base_path.join(\"architect\")).await?;","highlight_start":9,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":634,"byte_end":638,"line_start":23,"line_end":23,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut architect = CHORUSAgent::init(\"agent-architect\", Role::Architect, &base_path.join(\"architect\")).await?;","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:23:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m23\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut architect = CHORUSAgent::init(\"agent-architect\", Role::Architect, &base_path.join(\"architect\")).await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":750,"byte_end":763,"line_start":24,"line_end":24,"column_start":9,"column_end":22,"is_primary":true,"text":[{"text":" let mut developer = CHORUSAgent::init(\"agent-developer\", Role::Developer, &base_path.join(\"developer\")).await?;","highlight_start":9,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":750,"byte_end":754,"line_start":24,"line_end":24,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut developer = CHORUSAgent::init(\"agent-developer\", Role::Developer, &base_path.join(\"developer\")).await?;","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:24:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut developer = CHORUSAgent::init(\"agent-developer\", Role::Developer, &base_path.join(\"developer\")).await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} -{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":866,"byte_end":878,"line_start":25,"line_end":25,"column_start":9,"column_end":21,"is_primary":true,"text":[{"text":" let mut security = CHORUSAgent::init(\"agent-security\", Role::Security, &base_path.join(\"security\")).await?;","highlight_start":9,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":866,"byte_end":870,"line_start":25,"line_end":25,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut security = CHORUSAgent::init(\"agent-security\", Role::Security, &base_path.join(\"security\")).await?;","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:25:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m25\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut security = CHORUSAgent::init(\"agent-security\", Role::Security, &base_path.join(\"security\")).await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":634,"byte_end":647,"line_start":23,"line_end":23,"column_start":9,"column_end":22,"is_primary":true,"text":[{"text":" let mut architect = CHORUSAgent::init(\"agent-architect\", Role::Architect, &base_path.join(\"architect\"), None).await?;","highlight_start":9,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":634,"byte_end":638,"line_start":23,"line_end":23,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut architect = CHORUSAgent::init(\"agent-architect\", Role::Architect, &base_path.join(\"architect\"), None).await?;","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:23:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m23\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut architect = CHORUSAgent::init(\"agent-architect\", Role::Architect, &base_path.join(\"architect\"), None).await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":756,"byte_end":769,"line_start":24,"line_end":24,"column_start":9,"column_end":22,"is_primary":true,"text":[{"text":" let mut developer = CHORUSAgent::init(\"agent-developer\", Role::Developer, &base_path.join(\"developer\"), None).await?;","highlight_start":9,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":756,"byte_end":760,"line_start":24,"line_end":24,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut developer = CHORUSAgent::init(\"agent-developer\", Role::Developer, &base_path.join(\"developer\"), None).await?;","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:24:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m24\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut developer = CHORUSAgent::init(\"agent-developer\", Role::Developer, &base_path.join(\"developer\"), None).await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":878,"byte_end":890,"line_start":25,"line_end":25,"column_start":9,"column_end":21,"is_primary":true,"text":[{"text":" let mut security = CHORUSAgent::init(\"agent-security\", Role::Security, &base_path.join(\"security\"), None).await?;","highlight_start":9,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"chrs-council-demo/src/main.rs","byte_start":878,"byte_end":882,"line_start":25,"line_end":25,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut security = CHORUSAgent::init(\"agent-security\", Role::Security, &base_path.join(\"security\"), None).await?;","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0mchrs-council-demo/src/main.rs:25:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m25\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut security = CHORUSAgent::init(\"agent-security\", Role::Security, &base_path.join(\"security\"), None).await?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"6 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 6 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/deps/chrs_big_council_demo-7ccd79fb1a9fe3b5.d b/target/debug/deps/chrs_big_council_demo-7ccd79fb1a9fe3b5.d new file mode 100644 index 00000000..3784a901 --- /dev/null +++ b/target/debug/deps/chrs_big_council_demo-7ccd79fb1a9fe3b5.d @@ -0,0 +1,5 @@ +/home/tony/rust/projects/reset/CHORUS/target/debug/deps/libchrs_big_council_demo-7ccd79fb1a9fe3b5.rmeta: chrs-big-council-demo/src/main.rs + +/home/tony/rust/projects/reset/CHORUS/target/debug/deps/chrs_big_council_demo-7ccd79fb1a9fe3b5.d: chrs-big-council-demo/src/main.rs + +chrs-big-council-demo/src/main.rs: diff --git a/target/debug/deps/libchrs_agent-4ba4e52db5f4ed74.rmeta b/target/debug/deps/libchrs_agent-4ba4e52db5f4ed74.rmeta index c97ed09b..4e39e24a 100644 Binary files a/target/debug/deps/libchrs_agent-4ba4e52db5f4ed74.rmeta and b/target/debug/deps/libchrs_agent-4ba4e52db5f4ed74.rmeta differ diff --git a/target/debug/deps/libchrs_backbeat-ba907f06e22c066f.rmeta b/target/debug/deps/libchrs_backbeat-ba907f06e22c066f.rmeta index 4dbcaed3..0f3a6f8b 100644 Binary files a/target/debug/deps/libchrs_backbeat-ba907f06e22c066f.rmeta and b/target/debug/deps/libchrs_backbeat-ba907f06e22c066f.rmeta differ diff --git a/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe.lock b/target/debug/deps/libchrs_big_council_demo-7ccd79fb1a9fe3b5.rmeta similarity index 100% rename from target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe.lock rename to target/debug/deps/libchrs_big_council_demo-7ccd79fb1a9fe3b5.rmeta diff --git a/target/debug/deps/libchrs_bubble-1f6c55d5d4704140.rmeta b/target/debug/deps/libchrs_bubble-1f6c55d5d4704140.rmeta index 5123e32e..e68d24db 100644 Binary files a/target/debug/deps/libchrs_bubble-1f6c55d5d4704140.rmeta and b/target/debug/deps/libchrs_bubble-1f6c55d5d4704140.rmeta differ diff --git a/target/debug/deps/libchrs_election-5ce727077db60576.rmeta b/target/debug/deps/libchrs_election-5ce727077db60576.rmeta index 0009ccf7..ebeb0ee9 100644 Binary files a/target/debug/deps/libchrs_election-5ce727077db60576.rmeta and b/target/debug/deps/libchrs_election-5ce727077db60576.rmeta differ diff --git a/target/debug/deps/libchrs_graph-2d2a542a797e3854.rmeta b/target/debug/deps/libchrs_graph-2d2a542a797e3854.rmeta index 17adf79b..db83773a 100644 Binary files a/target/debug/deps/libchrs_graph-2d2a542a797e3854.rmeta and b/target/debug/deps/libchrs_graph-2d2a542a797e3854.rmeta differ diff --git a/target/debug/deps/libchrs_slurp-8d0bea508fbb12af.rmeta b/target/debug/deps/libchrs_slurp-8d0bea508fbb12af.rmeta index bc258ef2..fec3aea6 100644 Binary files a/target/debug/deps/libchrs_slurp-8d0bea508fbb12af.rmeta and b/target/debug/deps/libchrs_slurp-8d0bea508fbb12af.rmeta differ diff --git a/target/debug/deps/libchrs_sync-b031488799e5c869.rmeta b/target/debug/deps/libchrs_sync-b031488799e5c869.rmeta index 35560969..75ab131a 100644 Binary files a/target/debug/deps/libchrs_sync-b031488799e5c869.rmeta and b/target/debug/deps/libchrs_sync-b031488799e5c869.rmeta differ diff --git a/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe-bgsqb5f8s18707308oez10zo8/dep-graph.bin b/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe-bgsqb5f8s18707308oez10zo8/dep-graph.bin deleted file mode 100644 index 1999e4ad..00000000 Binary files a/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe-bgsqb5f8s18707308oez10zo8/dep-graph.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe-bgsqb5f8s18707308oez10zo8/query-cache.bin b/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe-bgsqb5f8s18707308oez10zo8/query-cache.bin deleted file mode 100644 index 9195da47..00000000 Binary files a/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe-bgsqb5f8s18707308oez10zo8/query-cache.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d-177pt33cq9jeukkz5z2o56rw1/dep-graph.bin b/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d-177pt33cq9jeukkz5z2o56rw1/dep-graph.bin new file mode 100644 index 00000000..1cb8ead4 Binary files /dev/null and b/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d-177pt33cq9jeukkz5z2o56rw1/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d-177pt33cq9jeukkz5z2o56rw1/query-cache.bin b/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d-177pt33cq9jeukkz5z2o56rw1/query-cache.bin new file mode 100644 index 00000000..5119dc36 Binary files /dev/null and b/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d-177pt33cq9jeukkz5z2o56rw1/query-cache.bin differ diff --git a/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe-bgsqb5f8s18707308oez10zo8/work-products.bin b/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d-177pt33cq9jeukkz5z2o56rw1/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbpgnkb1p-1ntw0xe-bgsqb5f8s18707308oez10zo8/work-products.bin rename to target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d-177pt33cq9jeukkz5z2o56rw1/work-products.bin diff --git a/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm.lock b/target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d.lock similarity index 100% rename from target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm.lock rename to target/debug/incremental/chrs_agent-1cpb53cjhk110/s-hgbrjzemtv-0zxcp9d.lock diff --git a/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm-8wol1aoyolkno0gl575qjdyu7/dep-graph.bin b/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm-8wol1aoyolkno0gl575qjdyu7/dep-graph.bin deleted file mode 100644 index 2891821a..00000000 Binary files a/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm-8wol1aoyolkno0gl575qjdyu7/dep-graph.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh-26934ldjg6qit28yk6qvt5ots/dep-graph.bin b/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh-26934ldjg6qit28yk6qvt5ots/dep-graph.bin new file mode 100644 index 00000000..d21038ab Binary files /dev/null and b/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh-26934ldjg6qit28yk6qvt5ots/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm-8wol1aoyolkno0gl575qjdyu7/query-cache.bin b/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh-26934ldjg6qit28yk6qvt5ots/query-cache.bin similarity index 91% rename from target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm-8wol1aoyolkno0gl575qjdyu7/query-cache.bin rename to target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh-26934ldjg6qit28yk6qvt5ots/query-cache.bin index 3b8ee104..9ec659c8 100644 Binary files a/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm-8wol1aoyolkno0gl575qjdyu7/query-cache.bin and b/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh-26934ldjg6qit28yk6qvt5ots/query-cache.bin differ diff --git a/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm-8wol1aoyolkno0gl575qjdyu7/work-products.bin b/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh-26934ldjg6qit28yk6qvt5ots/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbpgnozxe-1wza3fm-8wol1aoyolkno0gl575qjdyu7/work-products.bin rename to target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh-26934ldjg6qit28yk6qvt5ots/work-products.bin diff --git a/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm.lock b/target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh.lock similarity index 100% rename from target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm.lock rename to target/debug/incremental/chrs_agent-36wjvwfhcm4tn/s-hgbrjzi2mk-0bdfbhh.lock diff --git a/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm-2j8b2411a12nuqtnpomlfvjsk/dep-graph.bin b/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9-e2x9c3v4unm67fsgybn9d6hdb/dep-graph.bin similarity index 84% rename from target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm-2j8b2411a12nuqtnpomlfvjsk/dep-graph.bin rename to target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9-e2x9c3v4unm67fsgybn9d6hdb/dep-graph.bin index 73c5e729..69b78702 100644 Binary files a/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm-2j8b2411a12nuqtnpomlfvjsk/dep-graph.bin and b/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9-e2x9c3v4unm67fsgybn9d6hdb/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm-2j8b2411a12nuqtnpomlfvjsk/query-cache.bin b/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9-e2x9c3v4unm67fsgybn9d6hdb/query-cache.bin similarity index 89% rename from target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm-2j8b2411a12nuqtnpomlfvjsk/query-cache.bin rename to target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9-e2x9c3v4unm67fsgybn9d6hdb/query-cache.bin index 1d96a0c9..cdde8f67 100644 Binary files a/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm-2j8b2411a12nuqtnpomlfvjsk/query-cache.bin and b/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9-e2x9c3v4unm67fsgybn9d6hdb/query-cache.bin differ diff --git a/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm-2j8b2411a12nuqtnpomlfvjsk/work-products.bin b/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9-e2x9c3v4unm67fsgybn9d6hdb/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbpgnftqs-10kfdsm-2j8b2411a12nuqtnpomlfvjsk/work-products.bin rename to target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9-e2x9c3v4unm67fsgybn9d6hdb/work-products.bin diff --git a/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os.lock b/target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9.lock similarity index 100% rename from target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os.lock rename to target/debug/incremental/chrs_backbeat-1nsyzmzi3q4pj/s-hgbrjctfab-1yqfrm9.lock diff --git a/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os-eue53gxoxp99cdycg2fv6xin3/dep-graph.bin b/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup-eue53gxoxp99cdycg2fv6xin3/dep-graph.bin similarity index 53% rename from target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os-eue53gxoxp99cdycg2fv6xin3/dep-graph.bin rename to target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup-eue53gxoxp99cdycg2fv6xin3/dep-graph.bin index 679c1a34..7c98ec82 100644 Binary files a/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os-eue53gxoxp99cdycg2fv6xin3/dep-graph.bin and b/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup-eue53gxoxp99cdycg2fv6xin3/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os-eue53gxoxp99cdycg2fv6xin3/query-cache.bin b/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup-eue53gxoxp99cdycg2fv6xin3/query-cache.bin similarity index 67% rename from target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os-eue53gxoxp99cdycg2fv6xin3/query-cache.bin rename to target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup-eue53gxoxp99cdycg2fv6xin3/query-cache.bin index ad1ae479..c743e362 100644 Binary files a/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os-eue53gxoxp99cdycg2fv6xin3/query-cache.bin and b/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup-eue53gxoxp99cdycg2fv6xin3/query-cache.bin differ diff --git a/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os-eue53gxoxp99cdycg2fv6xin3/work-products.bin b/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup-eue53gxoxp99cdycg2fv6xin3/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbpgnp0kf-0kto7os-eue53gxoxp99cdycg2fv6xin3/work-products.bin rename to target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup-eue53gxoxp99cdycg2fv6xin3/work-products.bin diff --git a/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4.lock b/target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup.lock similarity index 100% rename from target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4.lock rename to target/debug/incremental/chrs_backbeat_demo-3k3t6v6sxbv48/s-hgbrjzi3jx-0z4foup.lock diff --git a/target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g-75rk6w8ctzycxr691n5a3vmi3/dep-graph.bin b/target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g-75rk6w8ctzycxr691n5a3vmi3/dep-graph.bin new file mode 100644 index 00000000..6eb8d949 Binary files /dev/null and b/target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g-75rk6w8ctzycxr691n5a3vmi3/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g-75rk6w8ctzycxr691n5a3vmi3/query-cache.bin b/target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g-75rk6w8ctzycxr691n5a3vmi3/query-cache.bin new file mode 100644 index 00000000..5bf04e1a Binary files /dev/null and b/target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g-75rk6w8ctzycxr691n5a3vmi3/query-cache.bin differ diff --git a/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4-3djolgbxnbmm8sy06q59o9qwb/work-products.bin b/target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g-75rk6w8ctzycxr691n5a3vmi3/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4-3djolgbxnbmm8sy06q59o9qwb/work-products.bin rename to target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g-75rk6w8ctzycxr691n5a3vmi3/work-products.bin diff --git a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i.lock b/target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g.lock similarity index 100% rename from target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i.lock rename to target/debug/incremental/chrs_big_council_demo-0lcptuit2tmnf/s-hgbrjzi00c-15dza4g.lock diff --git a/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4-3djolgbxnbmm8sy06q59o9qwb/dep-graph.bin b/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5-5rf40soqa18f95lz6efhsg0gg/dep-graph.bin similarity index 86% rename from target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4-3djolgbxnbmm8sy06q59o9qwb/dep-graph.bin rename to target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5-5rf40soqa18f95lz6efhsg0gg/dep-graph.bin index 1998f2ad..7532ed40 100644 Binary files a/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4-3djolgbxnbmm8sy06q59o9qwb/dep-graph.bin and b/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5-5rf40soqa18f95lz6efhsg0gg/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4-3djolgbxnbmm8sy06q59o9qwb/query-cache.bin b/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5-5rf40soqa18f95lz6efhsg0gg/query-cache.bin similarity index 91% rename from target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4-3djolgbxnbmm8sy06q59o9qwb/query-cache.bin rename to target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5-5rf40soqa18f95lz6efhsg0gg/query-cache.bin index 2e95b38e..07a6c08a 100644 Binary files a/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbiuxf3ag-1hsxgi4-3djolgbxnbmm8sy06q59o9qwb/query-cache.bin and b/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5-5rf40soqa18f95lz6efhsg0gg/query-cache.bin differ diff --git a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/work-products.bin b/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5-5rf40soqa18f95lz6efhsg0gg/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/work-products.bin rename to target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5-5rf40soqa18f95lz6efhsg0gg/work-products.bin diff --git a/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb.lock b/target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5.lock similarity index 100% rename from target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb.lock rename to target/debug/incremental/chrs_bubble-2y5hn5d0nbm3k/s-hgbrjcmhpv-1hygiy5.lock diff --git a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin similarity index 83% rename from target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin rename to target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin index e4293af3..31646263 100644 Binary files a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin and b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/query-cache.bin b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5-b32n30jhr1i6un09wogtcwmkv/query-cache.bin similarity index 88% rename from target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/query-cache.bin rename to target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5-b32n30jhr1i6un09wogtcwmkv/query-cache.bin index 812aeb4b..2db90416 100644 Binary files a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/query-cache.bin and b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5-b32n30jhr1i6un09wogtcwmkv/query-cache.bin differ diff --git a/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb-bs5bqzmuqy5zsa9u54jv71auc/work-products.bin b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5-b32n30jhr1i6un09wogtcwmkv/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb-bs5bqzmuqy5zsa9u54jv71auc/work-products.bin rename to target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5-b32n30jhr1i6un09wogtcwmkv/work-products.bin diff --git a/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj.lock b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5.lock similarity index 100% rename from target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj.lock rename to target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrjcmhkv-1vmjfo5.lock diff --git a/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb-bs5bqzmuqy5zsa9u54jv71auc/query-cache.bin b/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb-bs5bqzmuqy5zsa9u54jv71auc/query-cache.bin deleted file mode 100644 index 3f70fa97..00000000 Binary files a/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb-bs5bqzmuqy5zsa9u54jv71auc/query-cache.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb-bs5bqzmuqy5zsa9u54jv71auc/dep-graph.bin b/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3-7f9f5ft6whkhhku82osj3jk3h/dep-graph.bin similarity index 56% rename from target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb-bs5bqzmuqy5zsa9u54jv71auc/dep-graph.bin rename to target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3-7f9f5ft6whkhhku82osj3jk3h/dep-graph.bin index 03165c9a..da515778 100644 Binary files a/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbpgnoy9g-0cjg8lb-bs5bqzmuqy5zsa9u54jv71auc/dep-graph.bin and b/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3-7f9f5ft6whkhhku82osj3jk3h/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3-7f9f5ft6whkhhku82osj3jk3h/query-cache.bin b/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3-7f9f5ft6whkhhku82osj3jk3h/query-cache.bin new file mode 100644 index 00000000..d9bc011c Binary files /dev/null and b/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3-7f9f5ft6whkhhku82osj3jk3h/query-cache.bin differ diff --git a/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj-cx5aic4f5g9mtk046ilmhprzb/work-products.bin b/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3-7f9f5ft6whkhhku82osj3jk3h/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj-cx5aic4f5g9mtk046ilmhprzb/work-products.bin rename to target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3-7f9f5ft6whkhhku82osj3jk3h/work-products.bin diff --git a/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan.lock b/target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3.lock similarity index 100% rename from target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan.lock rename to target/debug/incremental/chrs_council_demo-3p8g3e5mduy82/s-hgbrjzhzrq-0ka6qc3.lock diff --git a/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj-cx5aic4f5g9mtk046ilmhprzb/dep-graph.bin b/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd-cx5aic4f5g9mtk046ilmhprzb/dep-graph.bin similarity index 72% rename from target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj-cx5aic4f5g9mtk046ilmhprzb/dep-graph.bin rename to target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd-cx5aic4f5g9mtk046ilmhprzb/dep-graph.bin index ec5d807c..d816c9b4 100644 Binary files a/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj-cx5aic4f5g9mtk046ilmhprzb/dep-graph.bin and b/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd-cx5aic4f5g9mtk046ilmhprzb/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj-cx5aic4f5g9mtk046ilmhprzb/query-cache.bin b/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd-cx5aic4f5g9mtk046ilmhprzb/query-cache.bin similarity index 80% rename from target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj-cx5aic4f5g9mtk046ilmhprzb/query-cache.bin rename to target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd-cx5aic4f5g9mtk046ilmhprzb/query-cache.bin index fffc4ece..901b49fb 100644 Binary files a/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbpgnca8i-1udstmj-cx5aic4f5g9mtk046ilmhprzb/query-cache.bin and b/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd-cx5aic4f5g9mtk046ilmhprzb/query-cache.bin differ diff --git a/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan-3glvo6ylref5nhi7emmfic5w4/work-products.bin b/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd-cx5aic4f5g9mtk046ilmhprzb/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan-3glvo6ylref5nhi7emmfic5w4/work-products.bin rename to target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd-cx5aic4f5g9mtk046ilmhprzb/work-products.bin diff --git a/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b.lock b/target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd.lock similarity index 100% rename from target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b.lock rename to target/debug/incremental/chrs_discovery-3g2nks910d0pt/s-hgbrjcry1c-1v6g2kd.lock diff --git a/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan-3glvo6ylref5nhi7emmfic5w4/dep-graph.bin b/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8-3glvo6ylref5nhi7emmfic5w4/dep-graph.bin similarity index 84% rename from target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan-3glvo6ylref5nhi7emmfic5w4/dep-graph.bin rename to target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8-3glvo6ylref5nhi7emmfic5w4/dep-graph.bin index e72ed310..d84617c6 100644 Binary files a/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan-3glvo6ylref5nhi7emmfic5w4/dep-graph.bin and b/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8-3glvo6ylref5nhi7emmfic5w4/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan-3glvo6ylref5nhi7emmfic5w4/query-cache.bin b/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8-3glvo6ylref5nhi7emmfic5w4/query-cache.bin similarity index 82% rename from target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan-3glvo6ylref5nhi7emmfic5w4/query-cache.bin rename to target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8-3glvo6ylref5nhi7emmfic5w4/query-cache.bin index 2fe1db2d..870eeab2 100644 Binary files a/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbpgnfth9-1pczgan-3glvo6ylref5nhi7emmfic5w4/query-cache.bin and b/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8-3glvo6ylref5nhi7emmfic5w4/query-cache.bin differ diff --git a/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b-5n6zvclwldy29qoszjhol6414/work-products.bin b/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8-3glvo6ylref5nhi7emmfic5w4/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b-5n6zvclwldy29qoszjhol6414/work-products.bin rename to target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8-3glvo6ylref5nhi7emmfic5w4/work-products.bin diff --git a/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh.lock b/target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8.lock similarity index 100% rename from target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh.lock rename to target/debug/incremental/chrs_election-1d68zbu7ewobr/s-hgbrjctfj9-0anhwr8.lock diff --git a/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b-5n6zvclwldy29qoszjhol6414/dep-graph.bin b/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b-5n6zvclwldy29qoszjhol6414/dep-graph.bin deleted file mode 100644 index f8eb92fa..00000000 Binary files a/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b-5n6zvclwldy29qoszjhol6414/dep-graph.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l-cs4kwf3dr61rapfbe7yc5wbru/dep-graph.bin b/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l-cs4kwf3dr61rapfbe7yc5wbru/dep-graph.bin new file mode 100644 index 00000000..18e57249 Binary files /dev/null and b/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l-cs4kwf3dr61rapfbe7yc5wbru/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b-5n6zvclwldy29qoszjhol6414/query-cache.bin b/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l-cs4kwf3dr61rapfbe7yc5wbru/query-cache.bin similarity index 81% rename from target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b-5n6zvclwldy29qoszjhol6414/query-cache.bin rename to target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l-cs4kwf3dr61rapfbe7yc5wbru/query-cache.bin index 655b6036..be03eab0 100644 Binary files a/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbh01vfse-0ehgg3b-5n6zvclwldy29qoszjhol6414/query-cache.bin and b/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l-cs4kwf3dr61rapfbe7yc5wbru/query-cache.bin differ diff --git a/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh-934w5kea9jf12jqyhn3gqxo2j/work-products.bin b/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l-cs4kwf3dr61rapfbe7yc5wbru/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh-934w5kea9jf12jqyhn3gqxo2j/work-products.bin rename to target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l-cs4kwf3dr61rapfbe7yc5wbru/work-products.bin diff --git a/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma.lock b/target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l.lock similarity index 100% rename from target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma.lock rename to target/debug/incremental/chrs_graph-34k2rhec3n6iw/s-hgbrjclcqy-1bx3b2l.lock diff --git a/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh-934w5kea9jf12jqyhn3gqxo2j/dep-graph.bin b/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95-9f40crqis9svtfmb1x8tuvs4r/dep-graph.bin similarity index 77% rename from target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh-934w5kea9jf12jqyhn3gqxo2j/dep-graph.bin rename to target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95-9f40crqis9svtfmb1x8tuvs4r/dep-graph.bin index 642ebdf4..a50df5c1 100644 Binary files a/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh-934w5kea9jf12jqyhn3gqxo2j/dep-graph.bin and b/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95-9f40crqis9svtfmb1x8tuvs4r/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh-934w5kea9jf12jqyhn3gqxo2j/query-cache.bin b/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95-9f40crqis9svtfmb1x8tuvs4r/query-cache.bin similarity index 89% rename from target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh-934w5kea9jf12jqyhn3gqxo2j/query-cache.bin rename to target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95-9f40crqis9svtfmb1x8tuvs4r/query-cache.bin index 037fc44b..347cae86 100644 Binary files a/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbpgnj41c-0n37uqh-934w5kea9jf12jqyhn3gqxo2j/query-cache.bin and b/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95-9f40crqis9svtfmb1x8tuvs4r/query-cache.bin differ diff --git a/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma-6hrdwcdqwfqgzgmarabop60fv/work-products.bin b/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95-9f40crqis9svtfmb1x8tuvs4r/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma-6hrdwcdqwfqgzgmarabop60fv/work-products.bin rename to target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95-9f40crqis9svtfmb1x8tuvs4r/work-products.bin diff --git a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx.lock b/target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95.lock similarity index 100% rename from target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx.lock rename to target/debug/incremental/chrs_observer-240czn80ahj4e/s-hgbrjcv8nt-0wgxp95.lock diff --git a/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma-6hrdwcdqwfqgzgmarabop60fv/dep-graph.bin b/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i-7moc1279qttdezpmgozyh8sus/dep-graph.bin similarity index 75% rename from target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma-6hrdwcdqwfqgzgmarabop60fv/dep-graph.bin rename to target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i-7moc1279qttdezpmgozyh8sus/dep-graph.bin index 48c74033..e51420e8 100644 Binary files a/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma-6hrdwcdqwfqgzgmarabop60fv/dep-graph.bin and b/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i-7moc1279qttdezpmgozyh8sus/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma-6hrdwcdqwfqgzgmarabop60fv/query-cache.bin b/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i-7moc1279qttdezpmgozyh8sus/query-cache.bin similarity index 80% rename from target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma-6hrdwcdqwfqgzgmarabop60fv/query-cache.bin rename to target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i-7moc1279qttdezpmgozyh8sus/query-cache.bin index 8290c0bf..e0a28514 100644 Binary files a/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbpgnp046-11v1lma-6hrdwcdqwfqgzgmarabop60fv/query-cache.bin and b/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i-7moc1279qttdezpmgozyh8sus/query-cache.bin differ diff --git a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/work-products.bin b/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i-7moc1279qttdezpmgozyh8sus/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/work-products.bin rename to target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i-7moc1279qttdezpmgozyh8sus/work-products.bin diff --git a/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d.lock b/target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i.lock similarity index 100% rename from target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d.lock rename to target/debug/incremental/chrs_poc-2e228dlj4q231/s-hgbrjzi0yc-0oyqj5i.lock diff --git a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin similarity index 99% rename from target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin rename to target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin index 0fd536c7..627b5977 100644 Binary files a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin and b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/query-cache.bin b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67-1hg9pu049gbzk22l9c3594qlg/query-cache.bin similarity index 100% rename from target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/query-cache.bin rename to target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67-1hg9pu049gbzk22l9c3594qlg/query-cache.bin diff --git a/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d-3cb2497w3zurvevgqpqrfyr2a/work-products.bin b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67-1hg9pu049gbzk22l9c3594qlg/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d-3cb2497w3zurvevgqpqrfyr2a/work-products.bin rename to target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67-1hg9pu049gbzk22l9c3594qlg/work-products.bin diff --git a/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd.lock b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67.lock similarity index 100% rename from target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd.lock rename to target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrjcnjry-1og3e67.lock diff --git a/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d-3cb2497w3zurvevgqpqrfyr2a/dep-graph.bin b/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13-4gr5q4ra4qc254ggqfzni8trk/dep-graph.bin similarity index 80% rename from target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d-3cb2497w3zurvevgqpqrfyr2a/dep-graph.bin rename to target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13-4gr5q4ra4qc254ggqfzni8trk/dep-graph.bin index cd86b648..089b3d71 100644 Binary files a/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d-3cb2497w3zurvevgqpqrfyr2a/dep-graph.bin and b/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13-4gr5q4ra4qc254ggqfzni8trk/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d-3cb2497w3zurvevgqpqrfyr2a/query-cache.bin b/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13-4gr5q4ra4qc254ggqfzni8trk/query-cache.bin similarity index 86% rename from target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d-3cb2497w3zurvevgqpqrfyr2a/query-cache.bin rename to target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13-4gr5q4ra4qc254ggqfzni8trk/query-cache.bin index 99ed8097..7d043792 100644 Binary files a/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbiuxf4vt-063mr4d-3cb2497w3zurvevgqpqrfyr2a/query-cache.bin and b/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13-4gr5q4ra4qc254ggqfzni8trk/query-cache.bin differ diff --git a/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd-ap8v1j17pq0tfa47q2filo17i/work-products.bin b/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13-4gr5q4ra4qc254ggqfzni8trk/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd-ap8v1j17pq0tfa47q2filo17i/work-products.bin rename to target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13-4gr5q4ra4qc254ggqfzni8trk/work-products.bin diff --git a/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13.lock b/target/debug/incremental/chrs_slurp-1uz909rqr9xiu/s-hgbrjcmj2l-02q5f13.lock new file mode 100644 index 00000000..e69de29b diff --git a/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd-ap8v1j17pq0tfa47q2filo17i/dep-graph.bin b/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/dep-graph.bin similarity index 66% rename from target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd-ap8v1j17pq0tfa47q2filo17i/dep-graph.bin rename to target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/dep-graph.bin index e7553f59..3524a2f1 100644 Binary files a/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd-ap8v1j17pq0tfa47q2filo17i/dep-graph.bin and b/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd-ap8v1j17pq0tfa47q2filo17i/query-cache.bin b/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/query-cache.bin similarity index 85% rename from target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd-ap8v1j17pq0tfa47q2filo17i/query-cache.bin rename to target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/query-cache.bin index 0d3f6d1c..9430e07c 100644 Binary files a/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbiuxf4rq-1m7gghd-ap8v1j17pq0tfa47q2filo17i/query-cache.bin and b/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/query-cache.bin differ diff --git a/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/work-products.bin b/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/work-products.bin new file mode 100644 index 00000000..ac2b1140 Binary files /dev/null and b/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui-6dg32q8i9nz8cuwx6vsq0lnlu/work-products.bin differ diff --git a/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui.lock b/target/debug/incremental/chrs_sync-37hbhw08hv8bk/s-hgbrjcmkvt-12lc9ui.lock new file mode 100644 index 00000000..e69de29b