rustview 0.1.7

A Streamlit/Gradio equivalent for pure Rust, turn a function into a live browser UI
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 = "2021"
rust-version = "1.75"
name = "rustview"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Streamlit/Gradio equivalent for pure Rust, turn a function into a live browser UI"
homepage = "https://github.com/EdgeTypE/rustview"
readme = "README.md"
keywords = [
    "ui",
    "web",
    "gui",
    "streamlit",
    "gradio",
]
categories = [
    "gui",
    "web-programming",
    "visualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EdgeTypE/rustview"

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

[[example]]
name = "counter"
path = "examples/counter.rs"

[[example]]
name = "dashboard"
path = "examples/dashboard.rs"

[[example]]
name = "hello"
path = "examples/hello.rs"

[[example]]
name = "showcase"
path = "examples/showcase.rs"

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

[[bench]]
name = "vdom_bench"
path = "benches/vdom_bench.rs"
harness = false

[dependencies.async-stream]
version = "0.3"

[dependencies.axum]
version = "0.8"
features = ["macros"]

[dependencies.base64]
version = "0.22.1"

[dependencies.bore-cli]
version = "0.6"

[dependencies.bytes]
version = "1"

[dependencies.dashmap]
version = "6"

[dependencies.fnv]
version = "1"

[dependencies.futures-core]
version = "0.3"

[dependencies.once_cell]
version = "1"

[dependencies.rustview-macros]
version = "0.1.7"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "signal",
]

[dependencies.tower]
version = "0.5"

[dependencies.tower-http]
version = "0.6"
features = [
    "cors",
    "fs",
    "limit",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

[dependencies.webbrowser]
version = "1.0"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]

[dev-dependencies.tokio-test]
version = "0.4"