mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-22 20:23:09 +00:00
Chore: cleanup the CLI package
This commit is contained in:
parent
be8d2678b5
commit
18ad810768
16 changed files with 8 additions and 6 deletions
|
@ -7,7 +7,7 @@ members = [
|
|||
"packages/recoil",
|
||||
"packages/redux",
|
||||
"packages/web",
|
||||
"packages/diopack",
|
||||
"packages/cli",
|
||||
#
|
||||
#
|
||||
#
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "diopack"
|
||||
name = "dioxus-cli"
|
||||
version = "0.0.0"
|
||||
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
|
||||
edition = "2018"
|
|
@ -1,4 +1,5 @@
|
|||
use diopack::cli::{LaunchCommand, LaunchOptions};
|
||||
use dioxus_cli as diopack;
|
||||
|
||||
#[async_std::main]
|
||||
async fn main() -> diopack::error::Result<()> {
|
|
@ -2,11 +2,12 @@
|
|||
name = "html-macro"
|
||||
version = "0.1.9"
|
||||
description = "html macro"
|
||||
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
|
||||
authors = [
|
||||
"Jonathan Kelley",
|
||||
"Chinedu Francis Nwafili <frankie.nwafili@gmail.com>",
|
||||
]
|
||||
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
|
||||
license = "MIT/Apache-2.0"
|
||||
repository = "https://github.com/chinedufn/percy"
|
||||
documentation = "https://chinedufn.github.io/percy/api/html_macro/"
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
|
@ -16,4 +17,4 @@ proc-macro = true
|
|||
proc-macro2 = { version = "0.4", features = ["span-locations"] }
|
||||
quote = "0.6.11"
|
||||
syn = { version = "0.15", features = ["full", "extra-traits"] }
|
||||
html-validation = {path = "../html-validation", version = "0.1.2"}
|
||||
html-validation = { path = "../html-validation", version = "0.1.2" }
|
||||
|
|
Loading…
Reference in a new issue