-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (37 loc) · 833 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
[package]
name = "miv-editor"
version = "0.1.0"
authors = ["JamesPatrickGill <jpgilldev@gmail.com>"]
license = "MIT"
edition = "2021"
description = "A toy text editor with pretty bad functionality"
[[bin]]
name = "miv"
bench = false
path = "src/main.rs"
[dependencies]
better-panic = "0.3.0"
clap = { version = "4.4.11", features = [
"derive",
"cargo",
"wrap_help",
"unicode",
"string",
"unstable-styles",
] }
color-eyre = "0.6.2"
crossterm = "0.27.0"
directories = "5.0.1"
human-panic = "1.2.2"
lazy_static = "1.4.0"
libc = "0.2.151"
log = "0.4.20"
ratatui = "0.25.0"
strip-ansi-escapes = "0.2.0"
strum = "0.25"
strum_macros = "0.25"
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "serde"] }
tree-sitter-highlight = "0.20.1"
tree-sitter-rust = "0.20.4"