markdown-live-preview 0.1.0

A live Markdown preview server with WebSocket and HTML rendering
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "markdown-live-preview"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A live Markdown preview server with WebSocket and HTML rendering"
readme = "README.md"
keywords = [
    "markdown",
    "live",
    "preview",
    "neovim",
    "websocket",
]
categories = [
    "text-processing",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/popplestones/markdown-live-preview"

[lib]
name = "markdown_live_preview"
path = "src/lib.rs"

[[bin]]
name = "markdown-live-preview"
path = "src/main.rs"

[[test]]
name = "http_server_tests"
path = "tests/http_server_tests.rs"

[[test]]
name = "message_handling_tests"
path = "tests/message_handling_tests.rs"

[[test]]
name = "tcp_server_tests"
path = "tests/tcp_server_tests.rs"

[dependencies.anyhow]
version = "1.0.98"

[dependencies.axum]
version = "0.8.4"
features = ["ws"]

[dependencies.comrak]
version = "0.39.0"

[dependencies.futures]
version = "0.3.31"

[dependencies.html-escape]
version = "0.2.13"

[dependencies.serde]
version = "1.0.219"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.140"

[dependencies.tokio]
version = "1.45.1"
features = ["full"]

[dependencies.tokio-stream]
version = "0.1.17"

[dependencies.tower]
version = "0.5.2"
features = ["util"]

[dependencies.webbrowser]
version = "1.0.4"