Strategies for finding binary dependencies
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update licenses

+32 -4
+18
LICENSES/MIT.txt
··· 1 + MIT License 2 + 3 + Copyright (c) <year> <copyright holders> 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 6 + associated documentation files (the "Software"), to deal in the Software without restriction, including 7 + without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 + copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the 9 + following conditions: 10 + 11 + The above copyright notice and this permission notice shall be included in all copies or substantial 12 + portions of the Software. 13 + 14 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 15 + LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO 16 + EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 17 + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 18 + USE OR OTHER DEALINGS IN THE SOFTWARE.
+1 -1
README.md
··· 1 1 <!-- 2 - © 2025 Vlad-Stefan Harbuz <vlad@vlad.website> 2 + © Vlad-Stefan Harbuz <vlad@vlad.website> 3 3 SPDX-License-Identifier: CC-BY-SA-4.0 4 4 --> 5 5
+8
REUSE.toml
··· 5 5 ".gitignore", 6 6 "Cargo.lock", 7 7 "Cargo.toml", 8 + "data/**/*", 8 9 ] 9 10 SPDX-FileCopyrightText = "NONE" 10 11 SPDX-License-Identifier = "CC0-1.0" 12 + 13 + [[annotations]] 14 + path = [ 15 + "contrib/**/*", 16 + ] 17 + SPDX-FileCopyrightText = "Vlad-Stefan Harbuz" 18 + SPDX-License-Identifier = "Apache-2.0"
+2
bin/dl-wheels
··· 1 1 #!/bin/sh -u 2 + # © Vlad-Stefan Harbuz <vlad@vlad.website> 3 + # SPDX-License-Identifier: Apache-2.0 2 4 3 5 if [ $# -eq 0 ] || [ $1 == "--help" ]; then 4 6 printf "Usage: dl-wheels.sh <wheel_dir> <csv_path>\n"
+1 -1
contrib/pybind11/build.sh
··· 1 1 #!/bin/sh -eu 2 2 3 - # © 2026 Vlad-Stefan Harbuz <vlad@vlad.website> 3 + # © Vlad-Stefan Harbuz <vlad@vlad.website> 4 4 # SPDX-License-Identifier: Apache-2.0 5 5 6 6 c++ \
+1 -1
contrib/pybind11/example.cpp
··· 1 - // © 2026 Vlad-Stefan Harbuz <vlad@vlad.website> 1 + // © Vlad-Stefan Harbuz <vlad@vlad.website> 2 2 // SPDX-License-Identifier: Apache-2.0 3 3 4 4 #include <pybind11/pybind11.h>
+1 -1
src/bin/print_symbols.rs
··· 1 - // © 2026 Vlad-Stefan Harbuz <vlad@vlad.website> 1 + // © Vlad-Stefan Harbuz <vlad@vlad.website> 2 2 // SPDX-License-Identifier: Apache-2.0 3 3 4 4 use std::ffi::OsString;