112 stable releases (11 major)

12.8.0 Dec 1, 2023
12.7.1 Nov 29, 2023
12.5.0 Oct 24, 2023
12.3.0 Jul 19, 2023
1.1.5 Dec 2, 2017

#37 in Debugging

Download history 41505/week @ 2023-12-23 71561/week @ 2023-12-30 97561/week @ 2024-01-06 106073/week @ 2024-01-13 116200/week @ 2024-01-20 108758/week @ 2024-01-27 107950/week @ 2024-02-03 114935/week @ 2024-02-10 118058/week @ 2024-02-17 130740/week @ 2024-02-24 113900/week @ 2024-03-02 115831/week @ 2024-03-09 117023/week @ 2024-03-16 117655/week @ 2024-03-23 133543/week @ 2024-03-30 89723/week @ 2024-04-06

475,905 downloads per month
Used in 170 crates (10 directly)

MIT license

605KB
15K SLoC

C++ 13K SLoC // 0.0% comments Rust 1.5K SLoC // 0.0% comments Python 96 SLoC // 0.0% comments

Build Status

symbolic-demangle

Demangling support for various languages and compilers.

Currently supported languages are:

  • C++ (GCC-style compilers and MSVC)
  • Rust (both legacy and v0)
  • Swift (up to Swift 5.2)
  • ObjC (only symbol detection)

As the demangling schemes for the languages are different, the supported demangling features are inconsistent. For example, argument types were not encoded in legacy Rust mangling and thus not available in demangled names.

This module is part of the symbolic crate and can be enabled via the demangle feature.

Examples

use symbolic::common::{Language, Name};
use symbolic::demangle::{Demangle, DemangleOptions};

let name = Name::new("__ZN3std2io4Read11read_to_end17hb85a0f6802e14499E");
assert_eq!(name.detect_language(), Language::Rust);
assert_eq!(name.try_demangle(DemangleOptions::default()), "std::io::Read::read_to_end");

License: MIT

Dependencies

~345–580KB
~11K SLoC