-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
38 lines (34 loc) · 871 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "skyscraper"
version = "0.7.0-beta.2"
authors = ["James La Novara-Gsell <[email protected]>"]
edition = "2021"
description = "XPath for HTML web scraping"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/James-LG/Skyscraper"
repository = "https://github.com/James-LG/Skyscraper"
categories = ["parsing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
indextree = "4.3.1"
thiserror = "1.0.52"
indexmap = "2.0.0"
log = "0.4.19"
nom = "7.1.3"
ordered-float = "4.2.0"
once_cell = "1.19.0"
enum-extract-macro = "0.1.1"
enum-extract-error = "0.1.1"
regex = "1.10.3"
[dev-dependencies]
criterion = "0.5.1"
mockall = "0.12.0"
indoc = "2"
proptest = "1.3.1"
regex = "1.10.3"
serde_json = "1.0.113"
serde = "1.0.196"
[[bench]]
name = "benchmarks"
harness = false