feat: migrate A2A crates to a2aproj-a2a-rs namespace#41
feat: migrate A2A crates to a2aproj-a2a-rs namespace#41muscariello wants to merge 1 commit intomainfrom
Conversation
There was a problem hiding this comment.
Code Review
This pull request performs a comprehensive renaming of the project and its crates, transitioning from the agntcy namespace to a2aproject and lf-a2a. The changes span repository URLs, package definitions, and documentation across the entire workspace. A review comment correctly identifies a version inconsistency in the a2a-server README example, which should be updated to reflect the current crate version for accuracy.
a2a-server/README.md
Outdated
| a2a = { package = "agntcy-a2a", version = "0.2" } | ||
| a2a-server = { package = "agntcy-a2a-server", version = "0.1" } | ||
| a2a = { package = "lf-a2a", version = "0.2" } | ||
| a2a-server = { package = "lf-a2a-server", version = "0.1" } |
There was a problem hiding this comment.
The version specified in the dependency example for lf-a2a-server is 0.1, but the actual version of the crate in a2a-server/Cargo.toml is 0.2.6. This should be updated to 0.2 to match the current major/minor version and maintain consistency with the other crates in the workspace.
| a2a-server = { package = "lf-a2a-server", version = "0.1" } | |
| a2a-server = { package = "lf-a2a-server", version = "0.2" } |
Signed-off-by: Luca Muscariello <muscariello@ieee.org>
c533feb to
f2600b3
Compare
Summary
agntcy-a2a*toa2aproj-a2a-rs*agntcy/a2a-rstoa2aproject/a2a-rsValidation
cargo test --workspace --quietcargo fmt --all -- --checkcargo clippy --workspace --all-targets -- -D warnings