From 6bcee2f5d2bb094f10e6e32111a69bc318559ac6 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Tue, 14 Jul 2026 22:57:02 +0200 Subject: [PATCH] chore: add root .gitignore and sbom-browser license field - Add a root .gitignore for Python build cruft (__pycache__, *.pyc, .ruff_cache) that was otherwise showing up as untracked. - Declare license = "OSL-3.0" in harbor-sbom-browser/Cargo.toml to match the other three tools (it was the only one without the field). --- .gitignore | 4 ++++ tools/harbor-sbom-browser/Cargo.toml | 1 + 2 files changed, 5 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f63b0b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# Python +__pycache__/ +*.py[cod] +.ruff_cache/ diff --git a/tools/harbor-sbom-browser/Cargo.toml b/tools/harbor-sbom-browser/Cargo.toml index cc8ecb9..0fd71c1 100644 --- a/tools/harbor-sbom-browser/Cargo.toml +++ b/tools/harbor-sbom-browser/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "harbor-sbom-browser" version = "0.1.0" +license = "OSL-3.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html