-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (29 loc) · 904 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
[package]
name = "h2s"
description = "A declarative HTML parser, which works like a deserializer from HTML to struct"
version = "0.18.0"
authors = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
categories = ["parsing"]
keywords = ["html", "dom", "parser", "parsing", "scraping"]
[workspace]
members = ["macro", "core"]
[workspace.package]
authors = ["Naoto Ikeno <ikenox@gmail.com>"]
repository = "https://github.com/ikenox/h2s-rs"
license = "MIT"
readme = "README.md"
edition = "2021"
rust-version = "1.65"
[workspace.dependencies]
scraper = "0.16.0"
[dependencies]
h2s_core = { path = "core", version = "0.18.0" }
h2s_macro = { path = "macro", version = "0.18.0" }
scraper = { workspace = true, optional = true }
[features]
default = ["backend-scraper"]
backend-scraper = ["dep:scraper"]