forked from jmacdonald/amp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (45 loc) · 1.03 KB
/
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
43
44
45
46
47
48
49
50
51
52
[package]
name = "amp"
version = "0.5.2"
authors = ["Jordan MacDonald <[email protected]>"]
description = "A complete text editor for your terminal."
homepage = "https://amp.rs"
repository = "https://github.com/jmacdonald/amp"
documentation = "https://amp.rs/docs"
readme = "README.md"
license-file = "LICENSE"
keywords = ["text", "editor", "terminal", "modal"]
edition="2018"
[build-dependencies]
syntex_syntax = "0.58.1"
[dependencies]
app_dirs = "1.2.1"
scribe = "0.7.2"
pad = "0.1.4"
bloodhound = "0.5.4"
luthor = "0.1.7"
git2 = "0.8"
fragment = "0.3.1"
regex = "^0.1"
libc = "0.2.4"
syntect = "2.1.0"
termion = "1.5.1"
error-chain = "0.12.0"
unicode-segmentation = "1.0.1"
clipboard = "0.4.4"
yaml-rust = "0.3.5"
smallvec = "0.4.3"
lazy_static = "1.2.0"
mio = "0.6"
[dependencies.signal-hook]
version = "0.1.9"
features = ["mio-support"]
[dev-dependencies]
criterion = "0.2.0"
[features]
bench = []
vendored-openssl = ["git2/vendored-openssl"]
[[bench]]
name = "draw_buffer"
path = "benches/view/draw_buffer.rs"
harness = false