skzephyr/Cargo.toml

29 lines
574 B
TOML

[package]
name = "zephyr"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["zephyr-cli"]
[features]
default = []
inventory = ["dep:inventory"]
scraping = ["dep:scraper", "dep:lazy_static", "dep:regex"]
[dependencies]
inventory = { version = "0.3", optional = true }
lazy_static = { version = "1.4.0", optional = true }
regex = { version = "1.6.0", optional = true }
scraper = { version = "0.13.0", optional = true }
tracing = "0.1.35"
[[example]]
name = "inventory"
required-features = ["inventory"]
[[example]]
name = "html"
required-features = ["scraping"]