retdec 0.1.0

A Rust library and tools providing easy access to the retdec.com decompilation service.
Documentation
1
2
3
4
5
6
7
8
9
10
//! A program for analysis of binary files using the
//! [retdec.com](https://retdec.com) public [REST
//! API](https://retdec.com/api/). Internally, it uses the
//! [retdec-rust](https://github.com/s3rvac/retdec-rust) library.

extern crate retdec;

fn main() {
    retdec::tools::fileinfo::main();
}