-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 832 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "deckyfx-dioxus-react-integration"
version = "0.2.2"
edition = "2021"
authors = ["Decky Fx"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/deckyfx/dioxus-react-integration"
description = "Serve React apps with Dioxus runtime and IPC bridge"
keywords = ["dioxus", "react", "webview", "integration"]
categories = ["gui", "web-programming"]
readme = "README.md"
[dependencies]
dioxus = { version = "0.7.0" }
# Use path for local development, version for published crate
deckyfx-dioxus-ipc-bridge = { version = "0.2", path = "../dioxus-ipc-bridge" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
once_cell = { version = "1.20", optional = true }
[features]
default = []
asset-registry = ["once_cell"]
[dev-dependencies]
dioxus = { version = "0.7.0", features = ["desktop"] }