Browse Source

bump native core macro

Jonathan Kelley 2 years ago
parent
commit
ad70b46776

+ 1 - 1
packages/hot-reload/Cargo.toml

@@ -23,4 +23,4 @@ serde_json = "1.0.91"
 serde = { version = "1", features = ["derive"] }
 execute = "0.2.11"
 once_cell = "1.17.0"
-ignore = "0.4.19"
+ignore = "0.4.19"

+ 4 - 4
packages/native-core-macro/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-native-core-macro"
-version = "0.2.0"
+version = "0.3.0"
 edition = "2021"
 description = "Build natively rendered apps with Dioxus"
 license = "MIT/Apache-2.0"
@@ -15,12 +15,12 @@ proc-macro = true
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 [dependencies]
-syn = { version = "1.0.11", features = ["extra-traits"] }
+syn = { version = "1.0.11", features = ["extra-traits", "full"] }
 quote = "1.0"
-dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
-dioxus = { path = "../dioxus" }
 
 [dev-dependencies]
 smallvec = "1.6"
 rustc-hash = "1.1.0"
 anymap = "0.12.1"
+dioxus = { path = "../dioxus" }
+dioxus-native-core = { path = "../native-core", version = "^0.2.0" }

+ 1 - 1
packages/native-core/Cargo.toml

@@ -30,5 +30,5 @@ lightningcss = "1.0.0-alpha.39"
 [dev-dependencies]
 rand = "0.8.5"
 dioxus = { path = "../dioxus", version = "^0.3.0" }
-dioxus-native-core-macro = { path = "../native-core-macro" }
+dioxus-native-core-macro = { path = "../native-core-macro" , version = "^0.3.0" }
 tokio = { version = "*", features = ["full"] }

+ 1 - 1
packages/tui/Cargo.toml

@@ -17,7 +17,7 @@ dioxus = { path = "../dioxus", version = "^0.3.0" }
 dioxus-core = { path = "../core", version = "^0.3.0", features = ["serialize"] }
 dioxus-html = { path = "../html", version = "^0.3.0" }
 dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
-dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.2.0" }
+dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.3.0" }
 dioxus-hot-reload = { path = "../hot-reload", optional = true }
 
 tui = "0.17.0"