mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
don't use local dependencies
This commit is contained in:
parent
86e10a9858
commit
49a0400d95
2 changed files with 6 additions and 31 deletions
30
Cargo.lock
generated
30
Cargo.lock
generated
|
@ -29,17 +29,6 @@ dependencies = [
|
||||||
"opaque-debug",
|
"opaque-debug",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "ahash"
|
|
||||||
version = "0.7.6"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
|
||||||
dependencies = [
|
|
||||||
"getrandom 0.2.8",
|
|
||||||
"once_cell",
|
|
||||||
"version_check",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aho-corasick"
|
name = "aho-corasick"
|
||||||
version = "0.7.20"
|
version = "0.7.20"
|
||||||
|
@ -711,6 +700,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dioxus-core"
|
name = "dioxus-core"
|
||||||
version = "0.2.1"
|
version = "0.2.1"
|
||||||
|
source = "git+https://github.com/dioxuslabs/dioxus#3824f386f7118999be739e92ac4f320f88979e06"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bumpalo",
|
"bumpalo",
|
||||||
"futures-channel",
|
"futures-channel",
|
||||||
|
@ -727,10 +717,10 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dioxus-html"
|
name = "dioxus-html"
|
||||||
version = "0.2.1"
|
version = "0.2.1"
|
||||||
|
source = "git+https://github.com/dioxuslabs/dioxus#3824f386f7118999be739e92ac4f320f88979e06"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"dioxus-core",
|
"dioxus-core",
|
||||||
"dioxus-rsx",
|
|
||||||
"enumset",
|
"enumset",
|
||||||
"euclid",
|
"euclid",
|
||||||
"keyboard-types",
|
"keyboard-types",
|
||||||
|
@ -742,9 +732,8 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dioxus-rsx"
|
name = "dioxus-rsx"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
source = "git+https://github.com/dioxuslabs/dioxus#3824f386f7118999be739e92ac4f320f88979e06"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dioxus-core",
|
|
||||||
"internment",
|
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -1105,9 +1094,6 @@ name = "hashbrown"
|
||||||
version = "0.12.3"
|
version = "0.12.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
||||||
dependencies = [
|
|
||||||
"ahash",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "headers"
|
name = "headers"
|
||||||
|
@ -1396,16 +1382,6 @@ dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "internment"
|
|
||||||
version = "0.7.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "2a798d7677f07d6f1e77be484ea8626ddb1566194de399f1206306820c406371"
|
|
||||||
dependencies = [
|
|
||||||
"hashbrown",
|
|
||||||
"parking_lot",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ipconfig"
|
name = "ipconfig"
|
||||||
version = "0.3.1"
|
version = "0.3.1"
|
||||||
|
|
|
@ -72,10 +72,9 @@ mlua = { version = "0.8.1", features = [
|
||||||
"macros",
|
"macros",
|
||||||
] }
|
] }
|
||||||
ctrlc = "3.2.3"
|
ctrlc = "3.2.3"
|
||||||
# dioxus-rsx = "0.0.1"
|
dioxus-rsx = { git = "https://github.com/dioxuslabs/dioxus" }
|
||||||
dioxus-rsx = { path = "c:/users/Desktop/github/dioxus/packages/rsx" }
|
dioxus-html = { git = "https://github.com/dioxuslabs/dioxus" }
|
||||||
dioxus-html = { path = "c:/users/Desktop/github/dioxus/packages/html" }
|
dioxus-core = { git = "https://github.com/dioxuslabs/dioxus", features = ["serialize"] }
|
||||||
dioxus-core = { path = "c:/users/Desktop/github/dioxus/packages/core", features = ["serialize"] }
|
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
Loading…
Reference in a new issue