rename folders

This commit is contained in:
Dongdong Zhou 2022-03-08 12:34:52 +00:00
parent b49f532862
commit 4d3a491864
56 changed files with 8 additions and 8 deletions

View File

@ -6,16 +6,16 @@ edition = "2021"
resolver = "2"
[dependencies]
lapce-core = { path = "./core" }
lapce-proxy = { path = "./proxy" }
lapce-core = { path = "./lapce-core" }
lapce-proxy = { path = "./lapce-proxy" }
[[bin]]
name = "lapce"
path = "core/src/bin/lapce.rs"
path = "lapce-core/src/bin/lapce.rs"
[[bin]]
name = "lapce-proxy"
path = "proxy/src/bin/lapce-proxy.rs"
path = "lapce-proxy/src/bin/lapce-proxy.rs"
[workspace]
members = ["core", "proxy", "rpc"]
members = ["lapce-core", "lapce-proxy", "lapce-rpc"]

View File

@ -57,8 +57,8 @@ druid = { git = "https://github.com/lapce/druid", features = ["svg", "im", "serd
toml = { version = "0.5.8", features = ["preserve_order"] }
structdesc = { git = "https://github.com/lapce/structdesc" }
#structdesc = { path = "../../structdesc" }
lapce-rpc = { path = "../rpc" }
lapce-proxy = { path = "../proxy" }
lapce-rpc = { path = "../lapce-rpc" }
lapce-proxy = { path = "../lapce-proxy" }
[build-dependencies]
cc = "1"

View File

@ -20,7 +20,7 @@ alacritty_terminal = "0.16.0-rc2"
mio = "0.6.20"
hotwatch = "0.4.6"
notify = "5.0.0-pre.13"
lapce-rpc = { path = "../rpc" }
lapce-rpc = { path = "../lapce-rpc" }
xi-rope = { git = "https://github.com/lapce/xi-editor", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
lsp-types = { version = "0.89.2", features = ["proposed"] }