Skip to content

Commit 6201f36

Browse files
fix: resolve ADO build failures in TS SDK and Rust crate
TS SDK (packages/agent-mesh/sdks/typescript): - @typescript-eslint/eslint-plugin ^7 → ^8.58 (match parser ^8.58) - typescript ^6.0.2 → ^5.7.0 (eslint 9 compat) - eslint ^10.1 → ^9.0 (match typescript-eslint 8.x) - Regenerate package-lock.json Rust crate (packages/agent-mesh/sdks/rust/agentmesh): - rand 0.10 → 0.8 (OsRng moved, thread_rng removed in 0.10) - sha2 0.11 → 0.10 (ed25519-dalek 2.x compat) - thiserror 2 → 1 (stable API) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b9ac7a8 commit 6201f36

File tree

3 files changed

+793
-1039
lines changed

3 files changed

+793
-1039
lines changed

packages/agent-mesh/sdks/rust/agentmesh/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ rust-version = "1.70"
1515
serde = { version = "1", features = ["derive"] }
1616
serde_json = "1"
1717
serde_yaml = "0.9"
18-
sha2 = "0.11"
18+
sha2 = "0.10"
1919
ed25519-dalek = { version = "2", features = ["rand_core"] }
20-
rand = "0.10"
21-
thiserror = "2"
20+
rand = "0.8"
21+
thiserror = "1"
2222

2323
[dev-dependencies]
2424
tempfile = "3"

0 commit comments

Comments
 (0)