skzephyr/Cargo.toml

29 lines
574 B
TOML
Raw Permalink Normal View History

2022-05-13 10:35:22 +00:00
[package]
name = "zephyr"
version = "0.1.0"
edition = "2021"
2022-09-09 16:54:18 +00:00
[workspace]
members = ["zephyr-cli"]
2022-07-02 15:42:02 +00:00
[features]
default = []
inventory = ["dep:inventory"]
2022-09-09 13:05:35 +00:00
scraping = ["dep:scraper", "dep:lazy_static", "dep:regex"]
2022-05-13 10:35:22 +00:00
[dependencies]
2022-07-02 15:42:02 +00:00
inventory = { version = "0.3", optional = true }
2022-09-09 13:05:35 +00:00
lazy_static = { version = "1.4.0", optional = true }
regex = { version = "1.6.0", optional = true }
2022-08-16 16:49:32 +00:00
scraper = { version = "0.13.0", optional = true }
2022-07-06 18:03:42 +00:00
tracing = "0.1.35"
2022-07-02 15:42:02 +00:00
[[example]]
name = "inventory"
required-features = ["inventory"]
[[example]]
name = "html"
required-features = ["scraping"]