Installs required Rust nightly components.
()
| 123 | sys.exit(1) |
| 124 | |
| 125 | def contains_non_runtime_classes(jar_path: Path) -> bool: |
| 126 | """Checks whether a runtime JAR contains classes outside its owned package.""" |
| 127 | if not jar_path.exists(): |
| 128 | return False |
| 129 | try: |
| 130 | with zipfile.ZipFile(jar_path) as archive: |
| 131 | return any( |
no test coverage detected