Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit eede59e

Browse files
committed
restore workspace
1 parent 5222a4c commit eede59e

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

Cargo.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[workspace]
2+
members = [
3+
"dog-app",
4+
"ecommerce-site",
5+
"image_generator_open_ai",
6+
"ios_demo",
7+
"jsframework-benchmark",
8+
"todomvc",
9+
"weatherapp",
10+
"wifi-scanner",
11+
]
12+
13+
# This is a "virtual package"
14+
# It is not meant to be published, but is used so "cargo run --example XYZ" works properly
15+
[package]
16+
name = "dioxus-example-projects"
17+
version = "0.0.1"
18+
edition = "2021"
19+
description = "Top level crate for the Dioxus examples repository"
20+
authors = ["Jonathan Kelley"]
21+
license = "MIT OR Apache-2.0"
22+
repository = "https://github.com/DioxusLabs/dioxus/"
23+
homepage = "https://dioxuslabs.com"
24+
documentation = "https://dioxuslabs.com"
25+
keywords = ["dom", "ui", "gui", "react", "wasm"]
26+
rust-version = "1.60.0"
27+
publish = false

file-explorer/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
2424
copyright = "Copyright (c) Jane Doe 2016. All rights reserved."
2525
category = "Developer Tool"
2626
short_description = "An example application."
27+
28+
# This package is not part of the workspace to avoid dependancy resolution issues between dioxus 0.4 and 0.5
29+
[workspace]

0 commit comments

Comments
 (0)