-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
19 lines (18 loc) · 738 Bytes
/
Copy pathCargo.toml
File metadata and controls
19 lines (18 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "rust-md2html" # CLI name on crates.io
version = "0.1.2" # Start with 0.1.0
edition = "2021"
authors = ["Hafiz Ali Raza haffizaliraza@gmail.com"]
description = "A simple Rust CLI to convert Markdown to HTML with file watching"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/rust-md2html"
repository = "https://github.com/haffizaliraza/rust-md2html"
readme = "README.md"
keywords = ["markdown", "html", "cli", "rust"]
categories = ["command-line-utilities", "text-processing"]
homepage = "https://github.com/haffizaliraza/rust-md2html"
exclude = [".gitignore", ".github/*"]
[dependencies]
pulldown-cmark = "0.10"
clap = { version = "4", features = ["derive"] }
notify = "6"