-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 883 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
[package]
name = "bad-apple-flut"
version = "1.0.0"
edition = "2021"
authors = ["peppidesu"]
description = "A video player for pixelflut written in Rust"
homepage = "https://github.com/peppidesu/bad-apple-flut"
repository = "https://github.com/peppidesu/bad-apple-flut"
license = "AGPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.15", features = ["derive"] }
clap-serde-derive = "0.2.1"
colored = "2.1.0"
crossterm = "0.27.0"
dirs = "5.0.1"
rayon = "1.8.0"
serde = { version = "1.0.195", features = ["derive"] }
tokio = { version = "1.35.1", features = ["full"] }
toml = "0.8.8"
[dev-dependencies]
tempfile = "3.9.0"
test-case = "3.3.1"
criterion = "0.5.1"
rand = "0.8.5"
[profile.release]
codegen-units = 1
lto = "thin"
strip = "symbols"
[package.metadata.aur]
depends = ["ffmpeg"]