2021-01-21 08:22:08 +00:00
|
|
|
[package]
|
2021-07-15 22:40:12 +00:00
|
|
|
name = "dioxus-desktop"
|
2021-01-21 08:22:08 +00:00
|
|
|
version = "0.0.0"
|
|
|
|
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
|
|
|
|
edition = "2018"
|
2021-02-28 22:40:40 +00:00
|
|
|
description = "Dioxus VirtualDOM renderer for a remote webview instance"
|
|
|
|
license = "MIT/Apache-2.0"
|
2021-01-21 08:22:08 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-26 02:42:44 +00:00
|
|
|
# web-view = { git = "https://github.com/Boscop/web-view" }
|
2021-07-15 16:18:11 +00:00
|
|
|
dioxus-core = { path = "../core", version = "0.1.2", features = ["serialize"] }
|
2021-02-19 01:04:25 +00:00
|
|
|
anyhow = "1.0.38"
|
|
|
|
argh = "0.1.4"
|
|
|
|
serde = "1.0.120"
|
|
|
|
serde_json = "1.0.61"
|
|
|
|
thiserror = "1.0.23"
|
|
|
|
log = "0.4.13"
|
2021-07-15 16:18:11 +00:00
|
|
|
fern = { version = "0.6.0", features = ["colored"] }
|
|
|
|
html-escape = "0.2.9"
|
|
|
|
wry = "0.11.0"
|
|
|
|
|
2021-02-15 19:14:28 +00:00
|
|
|
|
2021-07-15 16:18:11 +00:00
|
|
|
[dev-dependencies]
|
2021-07-08 14:17:51 +00:00
|
|
|
tide = "0.15.0"
|
|
|
|
tide-websockets = "0.3.0"
|
2021-07-15 16:18:11 +00:00
|
|
|
async-std = { version = "1.9.0", features = ["attributes"] }
|
2021-07-08 14:17:51 +00:00
|
|
|
|
2021-03-16 18:28:54 +00:00
|
|
|
# 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"
|
2021-07-15 16:18:11 +00:00
|
|
|
# async-std = { version = "1.9.0", features = ["attributes"] }
|
2021-03-16 18:28:54 +00:00
|
|
|
# serde = "1.0.120"
|
|
|
|
# serde_json = "1.0.61"
|
|
|
|
|
2021-03-16 15:03:59 +00:00
|
|
|
|
2021-02-15 19:14:28 +00:00
|
|
|
[build-dependencies]
|