| Crates.io | nmap_xml_parser |
| lib.rs | nmap_xml_parser |
| version | 0.3.0 |
| created_at | 2020-05-02 12:01:57.9588+00 |
| updated_at | 2020-11-09 13:02:05.238247+00 |
| description | Parse Nmap XML output into Rust |
| homepage | |
| repository | https://github.com/Ayrx/nmap_xml_parser |
| max_upload_size | |
| id | 236548 |
| size | 39,374 |
nmap_xml_parser parses Nmap XML output into Rust. For example:
use nmap_xml_parser::NmapResults;
let content = fs::read_to_string(nmap_xml_file).unwrap();
let results = NmapResults::parse(&content).unwrap();
Please refer to the documentation for more information.