docs.rs failed to build nparse-0.0.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
nparse-0.0.10
nparse 0.0.3
Parser for various Rust Strings.
Parsers for:
- Well Indent Strings (eg:
dmidecodeoutput) - KV pair Strings (eg:
lscpuoutput) - Multiline KV pair strings (eg:
systeminfooutput of windows) - Dotted tree Strings (eg:
sysctloutput)
Requirements
- Rust 1.36+
Usage
= "0.0.4"
Example use
- Converting an
Indentstring into json
use ;
use *;
- Converting a
K:Vstring into json
use ;
use *;
- Converting a
dottedstring into json (eg:parent.sub.sub: val)
use ;
use *;
Tests, Build
- Test
- Build Release
Examples
- Parse dmidecode output to json
- Parse sysctl output to json
- Parse lscpu to json
- Parse windows systeminfo to json