8 stable releases

Uses old Rust 2015

2.1.1 Mar 25, 2021
2.1.0 Feb 21, 2020
2.0.1 Sep 23, 2019
1.0.3 Sep 9, 2019
0.1.0 Aug 14, 2017

⚠️ Issues reported

#212 in Parser implementations

Download history 10552/week @ 2023-12-05 12264/week @ 2023-12-12 11888/week @ 2023-12-19 7336/week @ 2023-12-26 12170/week @ 2024-01-02 14179/week @ 2024-01-09 14105/week @ 2024-01-16 16538/week @ 2024-01-23 22804/week @ 2024-01-30 13898/week @ 2024-02-06 14936/week @ 2024-02-13 15595/week @ 2024-02-20 15533/week @ 2024-02-27 15262/week @ 2024-03-05 15197/week @ 2024-03-12 13590/week @ 2024-03-19

62,609 downloads per month
Used in 59 crates (35 directly)

MIT license

37KB
450 lines

parse_duration

Crates.io Travis

IMPORTANT: This repository is no longer being updated. Before deciding to use it, check if any of the issues are deal breakers. In particular, this crate should not be used with untrusted input (see this issue).

This crate provides a function parse for parsing strings into durations. The parser is based on the standard set by systemd.time, but extends it significantly. For example, negative numbers, decimals and exponents are allowed.

extern crate parse_duration;

use parse_duration::parse;
use std::time::Duration;

// One hour less than a day
assert_eq!(parse("1 day -1 hour"), Ok(Duration::new(82_800, 0)));
// Using exponents
assert_eq!(parse("1.26e-1 days"), Ok(Duration::new(10_886, 400_000_000)));
// Extra things will be ignored
assert_eq!(
    parse("Duration: 1 hour, 15 minutes and 29 seconds"),
    Ok(Duration::new(4529, 0))
);

Documentation

Documentation may be found on docs.rs.

Minimum Rust version policy

This crate's minimum supported rustc version is 1.28.0.

If the minimum rustc version needs to be increased, there will be a new major version. For example, if parse_duration 2.0.0 requires rustc 1.28.0, then parse_duration 2.x.y will also only require rustc 1.28.0. Since this crate is fairly simple, there likely won't be any need to increase the minimum version in the foreseeable future.

License

This software is licensed under the MIT License.

Contributing

Feel free to file an issue or submit a pull request if there's a bug you want fixed or a feature you want implemented.

By contributing to this project, you agree to license your code under the terms of the MIT License.

Dependencies

~2.5–3.5MB
~63K SLoC