rustfilt

Crates.iorustfilt
lib.rsrustfilt
version0.2.1
sourcesrc
created_at2016-05-14 20:38:18.932855
updated_at2019-09-16 21:25:35.796487
descriptionDemangle Rust symbol names
homepagehttps://github.com/luser/rustfilt
repositoryhttps://github.com/luser/rustfilt
max_upload_size
id5068
size25,145
Ted Mielczarek (luser)

documentation

README

Build Status Crates.io

Demangle Rust symbol names using rustc-demangle. rustfilt works similarly to c++filt, in that it accepts mangled symbol names as command line arguments, and if none are provided it accepts mangled symbols from stdin. Demangled symbols are written to stdout.

Installation

cargo install rustfilt

Usage

To demangle a file, simply run:

rustfilt -i mangled.txt -o demangled.txt

Rustfilt can also accept data from stdin, and pipe to stdout:

curl http://example.com/mangled-symbols.txt | rustfilt | less

By default, rustfilt strips the generated 'hashes' from the mangled names. If these need to be kept, simply pass the -h option to rustfilt.

Commit count: 25

cargo fmt