-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
43 lines (40 loc) · 828 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
33
34
35
36
37
38
39
40
41
42
[package]
name = "accepted"
version = "0.3.2"
authors = ["hatoo <[email protected]>"]
description = "A text editor to be ACCEPTED."
repository = "https://github.com/hatoo/Accepted"
readme = "README.md"
keywords = ["text", "editor", "terminal", "modal", "competitive"]
categories = ["text-editors"]
license = "MIT"
edition = "2018"
[[bin]]
name = "acc"
path = "src/main.rs"
[dependencies]
termion = "1.5"
unicode-width = "0.1"
clap = "2.3"
syntect = "3"
shellexpand = "2"
dirs = "2"
serde = "1"
serde_json = "1"
serde_derive = "1"
jsonrpc-core = "14"
lsp-types = "0.71"
regex = "1"
ropey = "1"
aho-corasick = "0.7"
iter-read = "0.2"
rbtag = "0.3"
anyhow = "1"
toml = "0.5"
ansi_colours = "1"
typemap = "0.3"
fuzzy-matcher = "0.3"
rayon = "1"
tokio = {version = "0.2", features = ["full"]}
async-trait = "0.1"
futures = "0.3"