-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
44 lines (40 loc) · 1.39 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
[package]
name = "cast2gif"
version = "0.1.0"
authors = ["Zicklag <zicklag@katharostech.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["cli", "backend-fontkit"]
cli = ["anyhow", "better-panic", "clap", "colored", "indicatif", "env_logger"]
backend-fontkit = ["font-kit", "pathfinder_geometry", "palette"]
backend-svg = ["resvg"]
flamegraph = ["flame"]
[dependencies]
log = "0.4.0"
vt100 = "0.8.1"
resvg = { version = "0.9.0", features = ["raqote-backend"], optional = true }
svg = "0.7.1"
gifski = "1.7.2"
clap = { version = "2.33.0", features = ["wrap_help"], optional = true }
anyhow = { version = "1.0.26", optional = true }
better-panic = { version = "0.2.0", optional = true }
env_logger = { version = "0.7.1", optional = true }
colored = { version = "1.9.3", optional = true }
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.48"
thiserror = "1.0.11"
rayon = "1.3.0"
lazy_static = "1.4.0"
base16 = "0.2.1"
ansi_colours = "1.0.1"
indicatif = { version = "0.14.0", optional = true }
imgref = "1.4.0"
rgb = "0.8.16"
flume = "0.5.1"
font-kit = { version = "0.6", features=["loader-freetype"], optional = true }
pathfinder_geometry = { version = "0.5.1", optional = true }
palette = { version = "0.5.0", optional = true }
flame = { version = "0.2.2", optional = true }
[profile.release]
lto = true