lapce/Cargo.toml

104 lines
2.6 KiB
TOML
Raw Normal View History

2019-09-03 17:30:08 +00:00
[package]
2020-09-25 09:59:37 +00:00
name = "lapce"
2023-06-01 18:54:48 +00:00
version = "0.2.8"
2019-09-03 17:30:08 +00:00
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
2021-10-26 10:09:30 +00:00
edition = "2021"
2023-01-21 20:47:41 +00:00
rust-version = "1.65"
default-run = "lapce"
2019-09-03 17:30:08 +00:00
[dependencies]
2023-01-24 19:29:21 +00:00
lapce-app = { path = "./lapce-app" }
2022-03-08 12:34:52 +00:00
lapce-proxy = { path = "./lapce-proxy" }
2021-10-06 16:43:04 +00:00
[[bin]]
name = "lapce"
2023-01-24 19:29:21 +00:00
path = "lapce-app/src/bin/lapce.rs"
2021-10-06 16:43:04 +00:00
[[bin]]
name = "lapce-proxy"
2022-03-08 12:34:52 +00:00
path = "lapce-proxy/src/bin/lapce-proxy.rs"
2020-10-15 17:03:20 +00:00
[workspace]
2023-04-26 20:46:51 +00:00
members = [
"lapce-app",
2023-04-27 20:04:29 +00:00
"lapce-data",
"lapce-ui",
2023-04-26 20:46:51 +00:00
"lapce-proxy",
"lapce-rpc",
"lapce-core",
]
[workspace.package]
2023-06-01 18:54:48 +00:00
version = "0.2.8"
edition = "2021"
rust-version = "1.64"
homepage = "https://lapce.dev"
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
[workspace.dependencies]
alacritty_terminal = "0.17.0"
anyhow = "1.0"
chrono = "0.4"
clap = { version = "3.2.17", features = ["derive"] }
crossbeam-channel = "0.5.0"
directories = "4.0.1"
flate2 = "1.0"
hashbrown = { version = "0.12.3", features = ["serde"] }
im = { version = "15.0.0", features = ["serde"] }
include_dir = "0.6.2"
indexmap = { version = "1.9", features = ["serde"] }
interprocess = "1.1.1"
itertools = "0.10.1"
log = "0.4"
notify = { version = "5.0.0", features = ["serde"] }
once_cell = "1.17"
parking_lot = { version = "0.11.0", features = ["deadlock_detection"] }
rayon = "1.5.1"
regex = "1.7.0"
reqwest = { version = "0.11", features = ["blocking", "json", "socks"] }
serde = "1.0"
serde_json = "1.0"
smallvec = "1.10.0"
strum = "0.21.0" # follow same version as system-deps in lockfile
strum_macros = "0.21.1" # ditto
tar = "0.4"
thiserror = "1.0"
toml_edit = { version = "0.14.4", features = ["easy"] }
lsp-types = { version = "0.93", features = ["proposed"] }
psp-types = { git = "https://github.com/lapce/psp-types" }
2023-05-16 19:59:12 +00:00
lapce-xi-rope = { version = "0.3.2", features = ["serde"] }
lapce-core = { path = "./lapce-core" }
lapce-rpc = { path = "./lapce-rpc" }
2023-02-07 21:41:47 +00:00
lapce-data = { path = "./lapce-data" }
lapce-proxy = { path = "./lapce-proxy" }
[workspace.dependencies.druid]
git = "https://github.com/lapce/druid"
branch = "shell_opengl"
# path = "../../druid/druid"
features = ["svg", "im", "serde"]
[profile.release-lto]
inherits = "release"
lto = true
codegen-units = 1
2022-04-25 07:53:33 +00:00
2022-04-20 20:51:53 +00:00
# A profile which compiles all (non-workspace) dependencies in release mode
# but Lapce code in dev mode. This gives a good debugging experience for your
2022-04-20 14:39:33 +00:00
# code and fast performance of other people's code. After the initial
# build subsequent ones are as fast as dev mode builds.
# See https://doc.rust-lang.org/cargo/reference/profiles.html
# To use this profile:
# cargo build --profile fastdev
# cargo run --profile fastdev --bin lapce
[profile.fastdev.package."*"]
opt-level = 3
[profile.fastdev]
inherits = "dev"