-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (55 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (55 loc) · 1.62 KB
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
54
55
56
57
58
59
60
61
62
[package]
name = "amp"
version = "0.7.1"
authors = ["Jordan MacDonald <jordan@wastedintelligence.com>"]
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 = "build/main.rs"
[build-dependencies]
regex = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
syntect = { version = "5.1", default-features = false, features = ["default-fancy"] }
[dependencies]
app_dirs2 = "2.5"
scribe = "0.10"
bloodhound = "0.5.5"
luthor = "0.2"
fragment = "0.3"
regex = "1.10"
libc = "0.2"
syntect = { version = "5.1", default-features = false, features = ["default-fancy"] }
termion = "2.0"
anyhow = "1.0"
unicode-segmentation = "1.10"
cli-clipboard = "0.4"
yaml-rust = "0.4"
smallvec = "1.11"
lazy_static = "1.4"
mio = { version = "1.0", features = [ "os-ext" ] }
signal-hook-mio = { version = "0.2", features = [ "support-v1_0" ] }
serial_test = "3.2.0"
log = "0.4"
env_logger = "0.11"
[dependencies.signal-hook]
version = "0.1"
features = ["mio-support"]
[dependencies.git2]
version = "0.20"
# 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"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
[[bench]]
name = "draw_buffer"
path = "benches/view/draw_buffer.rs"
harness = false