Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 424 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 424 Bytes

nmap_xml_parser

Crates.io

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.