chore: add back examples

This commit is contained in:
Jonathan Kelley 2022-12-28 16:23:05 -05:00
parent bc3cf6501c
commit c890051f87

View file

@ -22,45 +22,45 @@ members = [
"docs/guide", "docs/guide",
] ]
# # This is a "virtual package" # This is a "virtual package"
# # It is not meant to be published, but is used so "cargo run --example XYZ" works properly # It is not meant to be published, but is used so "cargo run --example XYZ" works properly
# [package] [package]
# name = "dioxus-examples" name = "dioxus-examples"
# version = "0.0.0" version = "0.0.0"
# authors = ["Jonathan Kelley"] authors = ["Jonathan Kelley"]
# edition = "2021" edition = "2021"
# description = "Top level crate for the Dioxus repository" description = "Top level crate for the Dioxus repository"
# license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
# repository = "https://github.com/DioxusLabs/dioxus/" repository = "https://github.com/DioxusLabs/dioxus/"
# homepage = "https://dioxuslabs.com" homepage = "https://dioxuslabs.com"
# documentation = "https://dioxuslabs.com" documentation = "https://dioxuslabs.com"
# keywords = ["dom", "ui", "gui", "react", "wasm"] keywords = ["dom", "ui", "gui", "react", "wasm"]
# rust-version = "1.60.0" rust-version = "1.60.0"
# publish = false publish = false
# [dev-dependencies] [dev-dependencies]
# dioxus = { path = "./packages/dioxus" } dioxus = { path = "./packages/dioxus" }
# dioxus-desktop = { path = "./packages/desktop" } dioxus-desktop = { path = "./packages/desktop" }
# dioxus-ssr = { path = "./packages/ssr" } dioxus-ssr = { path = "./packages/ssr" }
# dioxus-router = { path = "./packages/router" } dioxus-router = { path = "./packages/router" }
# fermi = { path = "./packages/fermi" } fermi = { path = "./packages/fermi" }
# futures-util = "0.3.21" futures-util = "0.3.21"
# log = "0.4.14" log = "0.4.14"
# num-format = "0.4.0" num-format = "0.4.0"
# separator = "0.4.1" separator = "0.4.1"
# serde = { version = "1.0.136", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
# im-rc = "15.0.0" im-rc = "15.0.0"
# anyhow = "1.0.53" anyhow = "1.0.53"
# serde_json = "1.0.79" serde_json = "1.0.79"
# rand = { version = "0.8.4", features = ["small_rng"] } rand = { version = "0.8.4", features = ["small_rng"] }
# tokio = { version = "1.16.1", features = ["full"] } tokio = { version = "1.16.1", features = ["full"] }
# reqwest = { version = "0.11.9", features = ["json"] } reqwest = { version = "0.11.9", features = ["json"] }
# fern = { version = "0.6.0", features = ["colored"] } fern = { version = "0.6.0", features = ["colored"] }
# thiserror = "1.0.30" thiserror = "1.0.30"
# env_logger = "0.9.0" env_logger = "0.9.0"
# simple_logger = "4.0.0" simple_logger = "4.0.0"
# [profile.release] [profile.release]
# opt-level = 3 opt-level = 3
# lto = true lto = true
# debug = true debug = true