[package]
name = "html2maud-bin"
version = "0.1.12"
edition = "2021"
readme = "../Readme.md"
repository = "https://github.com/grayfallstown/html2maud"
description = "html2maud is a library / cli to convert html to maud template code"
license = "MIT OR Apache-2.0"
keywords = ["maud", "html", "template"]
categories = ["command-line-utilities", "development-tools"]
build = "src/build.rs"
include = ["/icons", "/public", "/src", "tauri.conf.json", "Cargo.toml", "/icons"]
[[bin]]
name = "html2maud-bin"
path = "src/main.rs"
[dependencies]
html2maud = { version = "0.1.10" }
#html2maud = { path = "../library" }
clap = { version = "4.0.32", features = ["derive"] }
# paro-rs = { path = "../../paro-rs" }
paro-rs = "0.0.6"
uuid = { version = "1.2.2", features= ["v4", "fast-rng"] }
maud = "0.24.0"
tauri = { version = "1.2.3", features = [] }
tokio = { version = "1.11", features = ["full"] }
tokio-tungstenite = "0.18.0"
tungstenite = "0.18.0"
futures-util = "0.3"
chrono = "0.4.23"
clipboard = "0.5.0"
rust-embed="6.4.2"
tiny_http="0.12.0"
[build-dependencies]
tauri-build = { version = "1.2.1", features = [] }
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]