weggli 0.2.4

weggli is a fast and robust semantic search tool for C and C++ codebases. It is designed to help security researchers identify interesting functionality in large codebases.
Documentation
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup
from setuptools_rust import Binding, RustExtension

setup(
    name="weggli",
    version="0.2.4",
    author="fwilhelm",
    url="https://github.com/googleprojectzero/weggli",
    rust_extensions=[RustExtension("weggli", binding=Binding.PyO3, features=["python"])],
    zip_safe=False,
)