2021-01-21 03:22:08 -05:00
|
|
|
[package]
|
2021-07-15 18:40:12 -04:00
|
|
|
name = "dioxus-desktop"
|
Release dioxus-core v0.2.1, dioxus-core-macro v0.2.1, dioxus-html v0.2.1, dioxus-interpreter-js v0.2.1, dioxus-desktop v0.2.3, dioxus-hooks v0.2.1, dioxus-liveview v0.1.0, dioxus-native-core v0.2.0, dioxus-native-core-macro v0.2.0, dioxus-router v0.2.3, dioxus-ssr v0.2.1, dioxus-tui v0.2.2, dioxus-web v0.2.1, fermi v0.2.1, dioxus v0.2.4
2022-05-02 23:57:20 -04:00
|
|
|
version = "0.2.3"
|
2021-12-15 16:04:27 -05:00
|
|
|
authors = ["Jonathan Kelley"]
|
2021-01-21 03:22:08 -05:00
|
|
|
edition = "2018"
|
2021-02-28 17:40:40 -05:00
|
|
|
description = "Dioxus VirtualDOM renderer for a remote webview instance"
|
|
|
|
license = "MIT/Apache-2.0"
|
2021-12-15 16:04:27 -05:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
documentation = "https://dioxuslabs.com"
|
2021-12-15 16:06:13 -05:00
|
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
2021-01-21 03:22:08 -05:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
Release dioxus-core v0.2.1, dioxus-core-macro v0.2.1, dioxus-html v0.2.1, dioxus-interpreter-js v0.2.1, dioxus-desktop v0.2.3, dioxus-hooks v0.2.1, dioxus-liveview v0.1.0, dioxus-native-core v0.2.0, dioxus-native-core-macro v0.2.0, dioxus-router v0.2.3, dioxus-ssr v0.2.1, dioxus-tui v0.2.2, dioxus-web v0.2.1, fermi v0.2.1, dioxus v0.2.4
2022-05-02 23:57:20 -04:00
|
|
|
dioxus-core = { path = "../core", version = "^0.2.1", features = ["serialize"] }
|
|
|
|
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.1" }
|
|
|
|
dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.1" }
|
2022-03-09 14:24:05 -05:00
|
|
|
|
2022-02-13 18:59:15 +01:00
|
|
|
serde = "1.0.136"
|
|
|
|
serde_json = "1.0.79"
|
|
|
|
thiserror = "1.0.30"
|
|
|
|
log = "0.4.14"
|
2022-11-15 18:32:48 -08:00
|
|
|
wry = { version = "0.22.0" }
|
2022-02-13 18:59:15 +01:00
|
|
|
futures-channel = "0.3.21"
|
|
|
|
tokio = { version = "1.16.1", features = [
|
2021-10-19 12:09:35 -04:00
|
|
|
"sync",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"rt",
|
2021-11-16 01:25:38 -05:00
|
|
|
"time",
|
2022-11-17 20:00:39 -08:00
|
|
|
"macros",
|
2021-10-19 12:09:35 -04:00
|
|
|
], optional = true, default-features = false }
|
2022-10-24 04:40:41 +02:00
|
|
|
webbrowser = "0.8.0"
|
2022-11-17 20:00:39 -08:00
|
|
|
infer = "0.11.0"
|
2022-02-23 13:53:45 -05:00
|
|
|
dunce = "1.0.2"
|
2022-03-09 14:24:05 -05:00
|
|
|
|
2022-09-30 14:03:06 -05:00
|
|
|
interprocess = { version = "1.1.1" }
|
2022-11-17 20:00:39 -08:00
|
|
|
futures-util = "0.3.25"
|
2022-06-02 13:33:08 -05:00
|
|
|
|
2022-11-22 21:35:40 +01:00
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
|
|
objc = "0.2.7"
|
|
|
|
objc_id = "0.1.1"
|
|
|
|
|
2022-02-23 13:53:45 -05:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
core-foundation = "0.9.3"
|
2022-02-01 15:44:08 -05:00
|
|
|
|
2021-10-05 03:37:15 -04:00
|
|
|
[features]
|
|
|
|
default = ["tokio_runtime"]
|
|
|
|
tokio_runtime = ["tokio"]
|
2022-02-13 19:39:47 +01:00
|
|
|
fullscreen = ["wry/fullscreen"]
|
|
|
|
transparent = ["wry/transparent"]
|
|
|
|
tray = ["wry/tray"]
|
|
|
|
|
2021-07-15 12:18:11 -04:00
|
|
|
[dev-dependencies]
|
2022-03-09 14:24:05 -05:00
|
|
|
dioxus-core-macro = { path = "../core-macro" }
|
2021-10-04 01:28:04 -04:00
|
|
|
dioxus-hooks = { path = "../hooks" }
|
2022-02-13 12:35:07 -05:00
|
|
|
# image = "0.24.0" # enable this when generating a new desktop image
|