You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: run `cargo fix --edition --all-features`
* chore: set the edition to 2024
* chore: bump workspace resolver version
* style: modify `match` clauses introduced by migration
* chore: reformat project
* style: remove TODOs about manipulating env vars in single-threaded code
Copy file name to clipboardExpand all lines: agent-control/src/agent_control/agent_id.rs
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,9 @@ pub struct AgentID(String);
17
17
18
18
#[derive(Error,Debug)]
19
19
pubenumAgentIDError{
20
-
#[error("AgentID must contain 32 characters at most, contain lowercase alphanumeric characters or dashes only, start with alphabetic, and end with alphanumeric")]
20
+
#[error(
21
+
"AgentID must contain 32 characters at most, contain lowercase alphanumeric characters or dashes only, start with alphabetic, and end with alphanumeric"
0 commit comments