-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from James-LG/james/nom
BREAKING: Complete xpath module rewrite
- Loading branch information
Showing
91 changed files
with
12,894 additions
and
2,832 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "skyscraper" | ||
version = "0.5.1" | ||
version = "0.6.0" | ||
authors = ["James La Novara-Gsell <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
description = "XPath for HTML web scraping" | ||
license = "MIT" | ||
readme = "README.md" | ||
|
@@ -14,15 +14,21 @@ categories = ["parsing"] | |
|
||
[dependencies] | ||
indextree = "4.3.1" | ||
lazy_static = "1.4.0" | ||
thiserror = "1.0.30" | ||
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" | ||
stacker = "0.1.15" | ||
|
||
[dev-dependencies] | ||
criterion = "0.5.1" | ||
mockall = "0.12.0" | ||
indoc = "2" | ||
proptest = "1.3.1" | ||
|
||
[[bench]] | ||
name = "benchmarks" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Seeds for failure cases proptest has generated in the past. It is | ||
# automatically read and these particular cases re-run before any | ||
# novel cases are generated. | ||
# | ||
# It is recommended to check this file in to source control so that | ||
# everyone who runs the test benefits from these saved cases. | ||
cc 20048a5e9b79bcb027e54a2942e2bff1c34738f45885647a114e6666affd5c8b # shrinks to s = "" | ||
cc 1a8c030e6f3cd967369afade668ea42b6f21dc2dfc006f9865557baad40bf590 # shrinks to s = "\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Seeds for failure cases proptest has generated in the past. It is | ||
# automatically read and these particular cases re-run before any | ||
# novel cases are generated. | ||
# | ||
# It is recommended to check this file in to source control so that | ||
# everyone who runs the test benefits from these saved cases. | ||
cc 521c97a97f04f52ff7e083b8395ebc30c03b00c664dea089d23b430716979c05 # shrinks to s = "À" |
Oops, something went wrong.