#cluster #hpc #hostlist #pdsh

hostlist-parser

Parses hostlist expressions into a Vec of Strings

6 releases

0.1.6 Feb 19, 2024
0.1.5 Apr 3, 2023
0.1.4 Feb 3, 2022
0.1.3 May 13, 2020
0.1.0 Oct 19, 2019

#286 in Algorithms

Download history 1633/week @ 2024-01-19 1817/week @ 2024-01-26 2381/week @ 2024-02-02 2209/week @ 2024-02-09 2297/week @ 2024-02-16 1133/week @ 2024-02-23 1407/week @ 2024-03-01 2013/week @ 2024-03-08 1274/week @ 2024-03-15 1400/week @ 2024-03-22 2415/week @ 2024-03-29 2159/week @ 2024-04-05 2833/week @ 2024-04-12 2044/week @ 2024-04-19 1481/week @ 2024-04-26 1708/week @ 2024-05-03

8,327 downloads per month

MIT license

21KB
494 lines

hostlist-parser

Crates.io docs.rs

Parses hostlist expressions into a deduped Vec of Strings

This library implements hostlist parsing. It takes a hostlist expression and produces a Result of unique hostnames, or a parse error that can be introspected to see issues.

The fn to parse a hostlist is:

parse(input: &str,) -> Result<Vec<String>, combine::stream::easy::Errors<char, &str, usize>>

This parser can compile to native code and also with the wasm32-unknown-unknown target.

Dependencies

~1MB
~24K SLoC