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
|
[package]
name = "microformats-cli"
description = "A command line tool for parsing HTML as Microformats"
documentation = "https://docs.rs/microformats-cli"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
publish.workspace = true
version = "0.10.0"
include = ["src/bin/**/*.rs", "Cargo.toml"]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
clap-stdin = "0.5"
eyre = "0.6"
microformats = { path = "../library", version = "0", features = ["debug_flow"] }
serde_json.workspace = true
url.workspace = true
tabled = "0.16"
[[bin]]
name = "microformats"
path = "src/bin/cli/mod.rs"
[features]
default = []
debug = ["microformats/debug_flow"]
debug_flow = ["microformats/debug_flow"]
[lints]
workspace = true
|