Skip to content

Commit 1e55622

Browse files
committed
chore: add crates to license checker and refresh uv.lock
- scripts/license_checker.py: recognize crates/ path for Rust packages - uv.lock: refresh for workspace/maturin dependencies Signed-off-by: lucarlig <luca.carlig@ibm.com>
1 parent cf583e9 commit 1e55622

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

scripts/license_checker.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ def _classify_pyproject_scope(source: str, root: Path) -> str:
107107
return "plugins"
108108
if rel_parts[0] == "a2a-agents" and len(rel_parts) >= 2:
109109
return f"a2a-agents/{rel_parts[1]}"
110+
if rel_parts[0] == "crates" and len(rel_parts) >= 2:
111+
return f"crates/{rel_parts[1]}"
110112
if rel_parts[0] == "plugins_rust":
111113
return "plugins_rust"
112114
if rel_parts[0] == "docs":

uv.lock

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)