diff --git a/Cargo.lock b/Cargo.lock index d1aaa1fc4..d8e545d13 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -542,7 +542,7 @@ dependencies = [ [[package]] name = "dioxus-cli" -version = "0.1.5" +version = "0.2.0" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index 1ef798178..6c79ffada 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dioxus-cli" -version = "0.2" +version = "0.2.0" authors = ["Jonathan Kelley"] edition = "2021" description = "CLI tool for developing, testing, and publishing Dioxus apps" @@ -54,8 +54,12 @@ tower = "0.4.12" syn = { version = "1.0", features = ["full", "extra-traits"] } -dioxus-core = { git = "https://github.com/dioxuslabs/dioxus/", features = ["hot-reload"] } -dioxus-rsx = { git = "https://github.com/dioxuslabs/dioxus/", features = ["hot-reload"] } +dioxus-core = { git = "https://github.com/dioxuslabs/dioxus/", features = [ + "hot-reload", +] } +dioxus-rsx = { git = "https://github.com/dioxuslabs/dioxus/", features = [ + "hot-reload", +] } proc-macro2 = { version = "1.0", features = ["span-locations"] }