dioxus/packages/desktop/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

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-07-27 04:27:07 +00:00
anyhow = "1.0"
2021-02-19 01:04:25 +00:00
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"
2021-10-04 05:28:04 +00:00
# wry = { version = "0.12.2", git = "https://github.com/jkelleyrtp/wry.git", branch = "jk/fnmut_rpc" }
wry = "0.12.2"
2021-10-01 06:07:12 +00:00
tokio = { version = "1.12.0", features = ["full"] }
2021-10-04 05:28:04 +00:00
futures-channel = "0.3.16"
2021-07-15 16:18:11 +00:00
2021-02-15 19:14:28 +00:00
2021-07-15 16:18:11 +00:00
[dev-dependencies]
dioxus-html = { path = "../html" }
2021-10-01 06:07:12 +00:00
dioxus-core-macro = { path = "../core-macro" }
2021-10-04 05:28:04 +00:00
dioxus-hooks = { path = "../hooks" }
# 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"] }
# 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]