-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 831 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
[package]
name = "termvid"
version = "0.4.0"
edition = "2021"
description = "CLI application to play a video in the terminal"
license = "MIT OR Apache-2.0"
repository = "https://github.com/swz-git/termvid"
[profile.release]
lto = true
panic = 'abort'
[profile.dev]
opt-level = 3 # This needs to be 3 due to extreme lag without it
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rodio = { version = "0.17.1", features = [
"symphonia-wav",
], default-features = false }
clap = { version = "4.1.6", features = ["derive"] }
console = { version = "0.15.5", default-features = false, features = [
"ansi-parsing",
] }
ctrlc = "3.2.5"
unix-named-pipe = "0.2.0"
uuid = { version = "1.3.0", features = ["fast-rng", "v4"] }
which = "4.4.0"
y4m = "0.8.0"
yansi = "0.5.1"