-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
42 lines (38 loc) · 925 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
40
41
42
[package]
name = "codevis"
version = "0.8.4"
edition = "2021"
description = "A tool for turning your code into one large image"
license = "MIT"
repository = "https://github.com/sloganking/codevis"
[[bin]]
name = "codevis"
path = "src/main.rs"
test = false
doctest = false
[lib]
test = false
doctest = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
prodash = { version = "20.0.0", features = [
"render-line",
"render-line-crossterm",
"signal-hook",
"render-line-autoconfigure",
"progress-tree",
"unit-bytes",
] }
memmap2 = "0.5.7"
num_cpus = "1.13.1"
flume = { version = "0.10.14", default-features = false }
open = "3.0.2"
clap = { version = "4.0.9", features = ["derive"] }
bytesize = "1.1.0"
bstr = "1.0.0"
anyhow = "1.0.63"
signal-hook = "0.3.14"
image = "0.24"
syntect = "5.0.0"
ignore = "0.4.18"
unifont-bitmap = "1.0.0"