py-cpp-demangle
py-cpp-demangle copied to clipboard
Add support for the 'msvc-demangler' crate
This PR adds support for the MSVC demangler crate:
- https://crates.io/crates/msvc-demangler/0.9.0
This package now provides two API calls:
demangle_itanium(for the Itanium ABI; the current implementation)demangle_msvc(for MSVC demangling)
It probably requires a "major" version number bump (as per sem-ver), given the API has now changed.
Tests and documentation have been updated accordingly.
Signed-off-by: Andrew V. Teylu [email protected]
Actually, maybe we should just move the whole library to use: https://crates.io/crates/symbolic-demangle (which supports MSVC + gcc "simultaneously").
Thoughts?