2022-03-08 12:45:00 +00:00
|
|
|
[package]
|
|
|
|
name = "lapce-data"
|
2022-07-14 19:43:16 +00:00
|
|
|
version = "0.1.3"
|
2022-03-08 12:45:00 +00:00
|
|
|
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-21 11:35:00 +00:00
|
|
|
bitflags = "1"
|
2022-03-08 15:08:35 +00:00
|
|
|
chrono = "0.4.19"
|
|
|
|
log = "0.4.14"
|
|
|
|
fern = "0.6.0"
|
|
|
|
Inflector = "0.11.4"
|
|
|
|
rayon = "1.5.1"
|
|
|
|
diff = "0.1.12"
|
|
|
|
libloading = "0.7"
|
|
|
|
flate2 = "1.0.22"
|
2022-06-08 08:15:31 +00:00
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json", "socks"] }
|
2022-03-08 15:08:35 +00:00
|
|
|
hashbrown = "0.11.2"
|
|
|
|
sled = "0.34.7"
|
|
|
|
base64 = "0.13.0"
|
2022-03-21 19:14:39 +00:00
|
|
|
alacritty_terminal = "0.16"
|
2022-03-08 15:08:35 +00:00
|
|
|
config = "0.11"
|
|
|
|
indexmap = "1.7.0"
|
|
|
|
directories = "4.0.1"
|
|
|
|
itertools = "0.10.1"
|
|
|
|
unicode-width = "0.1.8"
|
|
|
|
unicode-segmentation = "1.7.1"
|
|
|
|
im = { version = "15.0.0", features = ["serde"] }
|
|
|
|
crossbeam-channel = "0.5.0"
|
|
|
|
crossbeam-utils = "0.8.4"
|
2022-06-07 19:44:06 +00:00
|
|
|
regex = "1.5.6"
|
2022-03-08 15:08:35 +00:00
|
|
|
jsonrpc-lite = "0.5.0"
|
|
|
|
bit-vec = "0.5.0"
|
|
|
|
parking_lot = { version = "0.11.0", features = ["deadlock_detection"] }
|
|
|
|
include_dir = "0.6.0"
|
2022-03-21 15:17:41 +00:00
|
|
|
thiserror = "1.0"
|
2022-03-08 15:08:35 +00:00
|
|
|
anyhow = "1.0.32"
|
2022-04-21 11:00:44 +00:00
|
|
|
strum = "0.24.0"
|
|
|
|
strum_macros = "0.24"
|
2022-03-08 15:08:35 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2022-05-08 20:55:16 +00:00
|
|
|
notify = { version = "5.0.0-pre.13", features = ["serde"] }
|
2022-03-08 15:08:35 +00:00
|
|
|
xi-rope = { git = "https://github.com/lapce/xi-editor", features = ["serde"] }
|
|
|
|
xi-unicode = "0.3.0"
|
|
|
|
fuzzy-matcher = "0.3.7"
|
2022-03-22 00:44:58 +00:00
|
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
2022-06-30 19:31:49 +00:00
|
|
|
lsp-types = { version = "0.93", features = ["proposed"] }
|
2022-05-15 14:26:23 +00:00
|
|
|
druid = { git = "https://github.com/lapce/druid", branch = "shell_opengl", features = [ "svg", "im", "serde", ] }
|
2022-04-19 14:07:51 +00:00
|
|
|
# druid = { path = "../../druid/druid", features = ["svg", "im" , "serde"] }
|
2022-03-08 15:08:35 +00:00
|
|
|
toml = { version = "0.5.8", features = ["preserve_order"] }
|
|
|
|
structdesc = { git = "https://github.com/lapce/structdesc" }
|
|
|
|
#structdesc = { path = "../../structdesc" }
|
2022-03-10 22:07:20 +00:00
|
|
|
lapce-core = { path = "../lapce-core" }
|
2022-03-08 15:08:35 +00:00
|
|
|
lapce-rpc = { path = "../lapce-rpc" }
|
|
|
|
lapce-proxy = { path = "../lapce-proxy" }
|
2022-03-26 22:29:57 +00:00
|
|
|
bytemuck = "1.8.0"
|
2022-04-24 20:54:30 +00:00
|
|
|
# For parsing markdown data, such as in hovers
|
|
|
|
pulldown-cmark = "0.9.1"
|
2022-07-01 01:25:18 +00:00
|
|
|
smallvec = "1.8.0"
|