mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-15 00:47:09 +00:00
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "dioxus-desktop"
|
|
version = "0.0.0"
|
|
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
|
|
edition = "2018"
|
|
description = "Dioxus VirtualDOM renderer for a remote webview instance"
|
|
license = "MIT/Apache-2.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# web-view = { git = "https://github.com/Boscop/web-view" }
|
|
dioxus-core = { path = "../core", version = "0.1.2", features = ["serialize"] }
|
|
anyhow = "1.0"
|
|
argh = "0.1.4"
|
|
serde = "1.0.120"
|
|
serde_json = "1.0.61"
|
|
thiserror = "1.0.23"
|
|
log = "0.4.13"
|
|
fern = { version = "0.6.0", features = ["colored"] }
|
|
html-escape = "0.2.9"
|
|
wry = "0.11.0"
|
|
async-std = { version = "1.9.0", features = ["attributes"] }
|
|
|
|
|
|
[dev-dependencies]
|
|
dioxus-html = { path = "../html" }
|
|
tide = "0.15.0"
|
|
tide-websockets = "0.3.0"
|
|
|
|
# thiserror = "1.0.23"
|
|
# log = "0.4.13"
|
|
# fern = { version = "0.6.0", features = ["colored"] }
|
|
# wasm-bindgen-cli-support = "0.2.71"
|
|
# anyhow = "1.0.38"
|
|
# argh = "0.1.4"
|
|
# async-std = { version = "1.9.0", features = ["attributes"] }
|
|
# serde = "1.0.120"
|
|
# serde_json = "1.0.61"
|
|
|
|
|
|
[build-dependencies]
|