2020-10-15 17:03:20 +00:00
|
|
|
[package]
|
2022-03-08 12:45:00 +00:00
|
|
|
name = "lapce-ui"
|
2022-03-04 13:11:41 +00:00
|
|
|
version = "0.0.10"
|
2020-10-15 17:03:20 +00:00
|
|
|
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
2021-10-26 10:09:30 +00:00
|
|
|
edition = "2021"
|
2020-10-15 17:03:20 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-03 10:40:03 +00:00
|
|
|
chrono = "0.4.19"
|
|
|
|
log = "0.4.14"
|
|
|
|
fern = "0.6.0"
|
2022-02-25 17:51:28 +00:00
|
|
|
Inflector = "0.11.4"
|
2022-01-26 21:00:53 +00:00
|
|
|
rayon = "1.5.1"
|
2022-01-21 19:36:13 +00:00
|
|
|
diff = "0.1.12"
|
2022-01-17 14:35:39 +00:00
|
|
|
libloading = "0.7"
|
2022-01-14 17:07:22 +00:00
|
|
|
flate2 = "1.0.22"
|
2021-12-30 16:39:38 +00:00
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
2021-11-02 16:31:53 +00:00
|
|
|
hashbrown = "0.11.2"
|
2021-10-27 21:10:24 +00:00
|
|
|
sled = "0.34.7"
|
2021-10-17 22:01:54 +00:00
|
|
|
base64 = "0.13.0"
|
2021-10-11 15:25:43 +00:00
|
|
|
alacritty_terminal = "0.15.0"
|
2021-10-07 16:00:48 +00:00
|
|
|
config = "0.11"
|
2021-10-04 11:14:35 +00:00
|
|
|
indexmap = "1.7.0"
|
2021-09-28 14:03:55 +00:00
|
|
|
directories = "4.0.1"
|
2021-09-28 11:36:39 +00:00
|
|
|
tinyfiledialogs = "3.8.3"
|
2021-07-16 14:34:03 +00:00
|
|
|
itertools = "0.10.1"
|
2021-06-17 16:40:24 +00:00
|
|
|
unicode-width = "0.1.8"
|
|
|
|
unicode-segmentation = "1.7.1"
|
2021-05-10 14:59:42 +00:00
|
|
|
im = { version = "15.0.0", features = ["serde"] }
|
2021-02-19 11:12:05 +00:00
|
|
|
crossbeam-channel = "0.5.0"
|
2021-05-10 14:59:42 +00:00
|
|
|
crossbeam-utils = "0.8.4"
|
2020-12-09 18:10:31 +00:00
|
|
|
regex = "1.4.2"
|
2021-09-13 09:58:17 +00:00
|
|
|
usvg = "0.14.0"
|
2020-10-26 13:54:40 +00:00
|
|
|
jsonrpc-lite = "0.5.0"
|
2020-10-21 14:41:40 +00:00
|
|
|
bit-vec = "0.5.0"
|
2020-10-15 19:44:57 +00:00
|
|
|
parking_lot = { version = "0.11.0", features = ["deadlock_detection"] }
|
|
|
|
include_dir = "0.6.0"
|
|
|
|
anyhow = "1.0.32"
|
|
|
|
strum = "0.19"
|
|
|
|
strum_macros = "0.19"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2022-02-02 17:31:17 +00:00
|
|
|
notify = "5.0.0-pre.13"
|
2021-09-16 17:01:45 +00:00
|
|
|
xi-rope = { git = "https://github.com/lapce/xi-editor", features = ["serde"] }
|
2021-06-17 16:40:24 +00:00
|
|
|
xi-unicode = "0.3.0"
|
2021-06-16 11:32:02 +00:00
|
|
|
fuzzy-matcher = "0.3.7"
|
2020-10-15 19:44:57 +00:00
|
|
|
uuid = { version = "0.7.4", features = ["v4"] }
|
2021-06-17 10:25:47 +00:00
|
|
|
lsp-types = { version = "0.89.2", features = ["proposed"] }
|
2022-03-15 13:03:38 +00:00
|
|
|
druid = { git = "https://github.com/lapce/druid", features = [ "svg", "im", "serde", ] }
|
|
|
|
#druid = { path = "../../druid/druid", features = ["svg", "im" , "serde"] }
|
2021-10-07 16:00:48 +00:00
|
|
|
toml = { version = "0.5.8", features = ["preserve_order"] }
|
2022-02-25 11:58:45 +00:00
|
|
|
structdesc = { git = "https://github.com/lapce/structdesc" }
|
|
|
|
#structdesc = { path = "../../structdesc" }
|
2022-03-08 15:08:35 +00:00
|
|
|
lapce-data = { path = "../lapce-data" }
|
2022-03-08 12:34:52 +00:00
|
|
|
lapce-rpc = { path = "../lapce-rpc" }
|
|
|
|
lapce-proxy = { path = "../lapce-proxy" }
|
2020-10-15 19:44:57 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-01-17 14:35:39 +00:00
|
|
|
cc = "1"
|
|
|
|
anyhow = "1.0.32"
|
|
|
|
threadpool = "1.0"
|