25 个版本

0.6.18 2023年11月27日
0.6.15 2023年6月14日
0.6.4 2022年8月12日
0.5.6 2022年8月6日
0.4.1 2021年2月22日

#150 in 地理空间

Download history • Rust 包仓库 74/week @ 2024-03-13 • Rust 包仓库 10/week @ 2024-03-20 • Rust 包仓库 7/week @ 2024-03-27 • Rust 包仓库 19/week @ 2024-04-03 • Rust 包仓库 10/week @ 2024-04-10 • Rust 包仓库 10/week @ 2024-04-24 • Rust 包仓库 469/week @ 2024-05-01 • Rust 包仓库 219/week @ 2024-05-08 • Rust 包仓库 151/week @ 2024-05-15 • Rust 包仓库 86/week @ 2024-05-22 • Rust 包仓库 53/week @ 2024-05-29 • Rust 包仓库 75/week @ 2024-06-05 • Rust 包仓库 70/week @ 2024-06-12 • Rust 包仓库 31/week @ 2024-06-19 • Rust 包仓库 24/week @ 2024-06-26 • Rust 包仓库

每月 215 次下载
用于 opening-hours

MIT/Apache

48KB
1K SLoC

Rust 1K SLoC // 0.0% comments • Rust 包仓库 Pest 182 SLoC // 0.1% comments • Rust 包仓库

Rust 解析器,用于 OSM 开放时间

opening-hours crate 的解析组件。

用法

将此添加到您的 Cargo.toml

[dependencies]
opening-hours-syntax = "0"

然后基本用法如下所示

use opening_hours_syntax::parse;

// Opens until 18pm during the week and until 12am the week-end.
const OH: &str = "Mo-Fr 10:00-18:00; Sa-Su 10:00-12:00";

fn main() {
    let oh = parse(&OH).unwrap();
    eprintln!("{:?}", oh);
}
"Root Package"


"Package"


"Documentation"

lib.rs:

opening-hours crate 的解析组件。

用法

将此添加到您的 Cargo.toml

[dependencies]
opening-hours-syntax = "0"

然后基本用法如下所示

use opening_hours_syntax::parse;

// Opens until 18pm during the week and until 12am the week-end.
const OH: &str = "Mo-Fr 10:00-18:00; Sa-Su 10:00-12:00";

fn main() {
    let oh = parse(&OH).unwrap();
    eprintln!("{:?}", oh);
}

依赖项

~4MB
~76K SLoC