-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace]
members = [".", "rustview-macros"]
[package]
name = "rustview"
version = "0.1.7"
edition = "2021"
rust-version = "1.75"
license = "MIT OR Apache-2.0"
description = "A Streamlit/Gradio equivalent for pure Rust, turn a function into a live browser UI"
readme = "README.md"
repository = "https://github.com/EdgeTypE/rustview"
homepage = "https://github.com/EdgeTypE/rustview"
keywords = ["ui", "web", "gui", "streamlit", "gradio"]
categories = ["gui", "web-programming", "visualization"]
[dependencies]
rustview-macros = { version = "0.1.7", path = "rustview-macros" }
axum = { version = "0.8", features = ["macros"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "fs", "limit"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dashmap = "6"
uuid = { version = "1", features = ["v4", "serde"] }
fnv = "1"
once_cell = "1"
bytes = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
async-stream = "0.3"
futures-core = "0.3"
base64 = "0.22.1"
webbrowser = "1.0"
bore-cli = "0.6"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
reqwest = { version = "0.12", features = ["json"] }
tokio-test = "0.4"
[[bench]]
name = "vdom_bench"
harness = false