mirror of https://github.com/lapce/lapce.git
rename folders
This commit is contained in:
parent
b49f532862
commit
4d3a491864
10
Cargo.toml
10
Cargo.toml
|
@ -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"]
|
||||
|
|
|
@ -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"
|
|
@ -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"] }
|
Loading…
Reference in New Issue