-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 795 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 795 Bytes
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
33
34
35
36
37
38
[package]
authors = ["Corentin Henry <corentinhenry@gmail.com>"]
description = "Xi Rpc Lib - Tokio based implementation of the RPC used in the Xi editor"
homepage = "https://github.com/xi-frontend/xrl"
keywords = [
"xi",
"rpc",
"json-rpc",
]
license-file = "LICENSE-MIT"
name = "xrl"
readme = "README.md"
repository = "https://github.com/xi-frontend/xrl"
version = "0.0.9"
edition = "2018"
[dependencies]
bytes = "0.4.12"
futures = "0.1.27"
log = "0.4.6"
serde = "1.0.92"
serde_derive = "1.0.92"
serde_json = "1.0.39"
tokio = "0.1.21"
tokio-codec = "0.1.1"
tokio-process = "0.2.3"
syntect = { version = "3.2.0", default-features = false }
[dependencies.clippy]
optional = true
version = "0.0.302"
[dev-dependencies]
criterion = "0.2"
[[bench]]
name = "linecache"
harness = false