mirror of
https://github.com/roapi/roapi.git
synced 2026-06-05 21:04:02 +08:00
28 lines
492 B
TOML
28 lines
492 B
TOML
[package]
|
|
name = "roapi-ui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "roapi_ui"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "roapi-ui"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
ehttp = { version = "0.6", features = ["json"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
# query ui
|
|
eframe = "0.33"
|
|
egui = "0.33"
|
|
egui_extras = { version = "0.33", features = ["syntect"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wasm-bindgen-futures = "0"
|
|
web-sys = "0"
|
|
log = "*"
|