-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 979 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "unimarkup-lsp"
version = "0.1.0"
edition = "2021"
authors = ["Manuel Hatzl", "Nadir Fejzić"]
description = "Language server for Unimarkup."
repository = "https://github.com/unimarkup/unimarkup-lsp"
homepage = "https://github.com/unimarkup/unimarkup-lsp"
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
unimarkup-core = { path = "../unimarkup-rs/core/", version = "0" }
unimarkup-inline = { path = "../unimarkup-rs/inline/", version = "0" }
lsp-server = "0.7.0"
lsp-types = "0.94.0"
serde_json = "1.0.34"
serde = { version = "1.0.83", features = ["derive"] }
tokio = { version = "1.20.1", features = ["full"] }
[dev-dependencies]
insta = {version = "1.29.0", features = ["serde"]}
# Compile snapshot testing library "insta" with "release" flag
# so that it runs faster
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3