tildes-parser/Cargo.toml

23 lines
464 B
TOML
Raw Normal View History

2022-09-29 23:29:46 +00:00
[package]
name = "tildes-parser"
description = "Consolidated parsing for Tildes.net HTML."
repository = "https://git.bauke.xyz/tildes-community/tildes-parser"
2022-09-29 23:29:46 +00:00
license = "AGPL-3.0-or-later"
version = "0.1.0"
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
[lib]
path = "source/lib.rs"
[dependencies]
2024-02-25 12:04:48 +00:00
chrono = "0.4.34"
2023-06-09 18:37:21 +00:00
duplicate = "^1.0.0"
2022-09-29 23:29:46 +00:00
lazy_static = "^1.4.0"
2024-02-25 12:04:48 +00:00
regex = "^1.10.3"
scraper = "^0.18.1"
thiserror = "1.0.57"
2022-09-29 23:29:46 +00:00
[dev-dependencies]
2024-02-25 12:04:48 +00:00
insta = "^1.35.1"