fix druid path

This commit is contained in:
Dongdong Zhou 2021-10-28 13:33:24 +01:00
parent ef65e42454
commit dcbff65282
2 changed files with 4 additions and 1 deletions

3
Cargo.lock generated
View File

@ -1045,6 +1045,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
[[package]]
name = "druid"
version = "0.7.0"
source = "git+https://github.com/lapce/druid#f33476a4d7b060830151ff852d64d69577564750"
dependencies = [
"console_error_panic_hook",
"druid-derive",
@ -1068,6 +1069,7 @@ dependencies = [
[[package]]
name = "druid-derive"
version = "0.4.0"
source = "git+https://github.com/lapce/druid#f33476a4d7b060830151ff852d64d69577564750"
dependencies = [
"proc-macro2 1.0.29",
"quote 1.0.9",
@ -1077,6 +1079,7 @@ dependencies = [
[[package]]
name = "druid-shell"
version = "0.7.0"
source = "git+https://github.com/lapce/druid#f33476a4d7b060830151ff852d64d69577564750"
dependencies = [
"anyhow",
"cfg-if 1.0.0",

View File

@ -42,7 +42,7 @@ fzyr = "0.1.2"
fuzzy-matcher = "0.3.7"
uuid = { version = "0.7.4", features = ["v4"] }
lsp-types = { version = "0.89.2", features = ["proposed"] }
druid = { path = "../../druid/druid", features = ["svg", "im"] }
druid = { git = "https://github.com/lapce/druid", features = ["svg", "im"] }
toml = { version = "0.5.8", features = ["preserve_order"] }
lapce-proxy = { path = "../proxy" }