dioxus/packages/desktop/Cargo.toml

41 lines
1.1 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"
version = "0.1.5"
2021-12-15 21:04:27 +00:00
authors = ["Jonathan Kelley"]
2021-01-21 08:22:08 +00:00
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-12-15 21:04:27 +00:00
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
documentation = "https://dioxuslabs.com"
2021-12-15 21:06:13 +00:00
keywords = ["dom", "ui", "gui", "react", "wasm"]
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]
dioxus-core = { path = "../core", version ="^0.1.7", features = ["serialize"] }
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
html-escape = "0.2.9"
2021-10-04 05:28:04 +00:00
wry = "0.12.2"
futures-channel = "0.3"
2021-10-19 16:09:35 +00:00
tokio = { version = "1.12.0", features = [
"sync",
"rt-multi-thread",
"rt",
2021-11-16 06:25:38 +00:00
"time",
2021-10-19 16:09:35 +00:00
], optional = true, default-features = false }
dioxus-core-macro = { path = "../core-macro", version ="^0.1.6"}
dioxus-html = { path = "../html", features = ["serialize"], version ="^0.1.4"}
2022-01-18 01:19:12 +00:00
webbrowser = "0.5.5"
2021-10-05 07:37:15 +00:00
[features]
default = ["tokio_runtime"]
tokio_runtime = ["tokio"]
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]
2021-10-04 05:28:04 +00:00
dioxus-hooks = { path = "../hooks" }