소스 검색

Merge branch 'master' of https://github.com/mrxiaozhuox/dioxus-cli

YuKun Liu 2 년 전
부모
커밋
6092bfed0a
2개의 변경된 파일8개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      Cargo.lock
  2. 7 3
      Cargo.toml

+ 1 - 1
Cargo.lock

@@ -561,7 +561,7 @@ dependencies = [
 
 [[package]]
 name = "dioxus-cli"
-version = "0.1.5"
+version = "0.2.0"
 dependencies = [
  "anyhow",
  "atty",

+ 7 - 3
Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-cli"
-version = "0.1.5"
+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"] }
 lazy_static = "1.4.0"