Skip to content

Commit f31452c

Browse files
authored
Merge pull request #201 from rust-scraper/workspaces
Introduce workspaces
2 parents 8fda509 + a6889c5 commit f31452c

24 files changed

+800
-130
lines changed

Cargo.lock

Lines changed: 87 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,4 @@
1-
[package]
2-
name = "scraper"
3-
version = "0.20.0"
4-
edition = "2021"
1+
[workspace]
2+
resolver = "2"
53

6-
description = "HTML parsing and querying with CSS selectors"
7-
keywords = ["html", "css", "selector", "scraping"]
8-
9-
authors = ["June McEnroe <june@causal.agency>"]
10-
license = "ISC"
11-
12-
repository = "https://github.com/causal-agent/scraper"
13-
readme = "README.md"
14-
15-
[dependencies]
16-
cssparser = "0.31.0"
17-
ego-tree = "0.7.0"
18-
html5ever = "0.27"
19-
selectors = "0.25.0"
20-
tendril = "0.4.3"
21-
ahash = "0.8"
22-
indexmap = { version = "2.4.0", optional = true }
23-
24-
[dependencies.getopts]
25-
version = "0.2.21"
26-
optional = true
27-
28-
[features]
29-
default = ["main", "errors"]
30-
deterministic = ["indexmap"]
31-
main = ["getopts"]
32-
atomic = []
33-
errors = []
34-
35-
[[bin]]
36-
name = "scraper"
37-
path = "src/main.rs"
38-
required-features = ["main"]
4+
members = ["scraper"]

0 commit comments

Comments
 (0)