2022-09-29 23:29:46 +00:00
|
|
|
[package]
|
|
|
|
name = "tildes-parser"
|
|
|
|
description = "Consolidated parsing for Tildes.net HTML."
|
|
|
|
repository = "https://git.bauke.xyz/Bauke/tildes-parser"
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Bauke <me@bauke.xyz>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "source/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
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"
|
2023-06-09 18:37:21 +00:00
|
|
|
regex = "^1.8.4"
|
|
|
|
scraper = "^0.16.0"
|
|
|
|
thiserror = "1.0.40"
|
2022-09-29 23:29:46 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-09 18:37:21 +00:00
|
|
|
insta = "^1.29.0"
|