-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 893 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 893 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
[package]
name = 'hop-editor'
version = '1.1.0'
edition = '2021'
authors = [ 'Nathan ROYER <nathan.royer.pro@gmail.com>' ]
repository = 'https://github.com/NathanRoyer/hop-editor'
description = 'terminal code editor'
categories = [ 'command-line-utilities' ]
keywords = ['editor', 'terminal', 'syntax', 'nano']
license = 'MIT'
[profile.release]
overflow-checks = true
opt-level = "z"
lto = true
# debug = true
[[bin]]
name = "hop"
path = "src/main.rs"
[dependencies]
crossterm = { version = "0.29", default-features = false, features = ['bracketed-paste', 'events'] }
toml = { version = '0.9', default-features = false, features = ['serde', 'parse'] }
serde = { version = '1.0', features = ['derive', 'rc'] }
hex_color = { version = '3.0', features = ['serde'] }
litemap = { version = '0.8', features = ['serde'] }
enum_dispatch = "0.3"
# vt100
[features]
windows = ['crossterm/windows']