File: Cargo.toml

package info (click to toggle)
rust-microformats 0.16.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,136 kB
  • sloc: javascript: 71; makefile: 26; sh: 1
file content (25 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (2)
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
[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.9.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" }
serde_json.workspace = true
url.workspace = true

[[bin]]
name = "microformats"
path = "src/bin/cli/mod.rs"

[lints]
workspace = true