17 lines
510 B
TOML
17 lines
510 B
TOML
[package]
|
|
name = "md-to-html"
|
|
version = "0.0.3"
|
|
edition = "2021"
|
|
repository = "https://git.stancik.cz/lusk/md-to-html"
|
|
description = "Markdown to HTML converter"
|
|
authors = ["Sokhibjon Orzikulov <orzklv.uz>", "Lukas Stancik <lukas.stancik.cz>"]
|
|
readme = "README.md"
|
|
license = "GPL-3.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.1.6", features = ["derive"] }
|
|
markdown = { path = "../markdown-rs" }
|
|
env_logger = "0.11"
|