-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathCargo.toml
53 lines (46 loc) · 1.17 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
53
[package]
name = "amp"
version = "0.7.1"
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="2021"
[build-dependencies]
regex = "1.10"
[dependencies]
app_dirs2 = "2.5"
scribe = "0.8"
bloodhound = "0.5.5"
luthor = "0.2"
fragment = "0.3"
regex = "1.10"
libc = "0.2"
syntect = "5.1"
termion = "2.0"
error-chain = "0.12"
unicode-segmentation = "1.10"
cli-clipboard = "0.4"
yaml-rust = "0.4"
smallvec = "1.11"
lazy_static = "1.4"
mio = "0.6"
serial_test = "3.2.0"
[dependencies.signal-hook]
version = "0.1"
features = ["mio-support"]
[dependencies.git2]
version = "0.19"
# We use very little of the Git crate. Disabling its default features makes it
# as bare as possible, and sidesteps its openssl dependency, among others.
default-features = false # removes unused openssl dependency
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "draw_buffer"
path = "benches/view/draw_buffer.rs"
harness = false