-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
32 lines (27 loc) · 911 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
# EasySplash - tool for animated splash screens
# Copyright (C) 2020 O.S. Systems Software LTDA.
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
[package]
name = "easysplash"
version = "1.90.0"
authors = ["Otavio Salvador <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1.0.70"
argh = "0.1.10"
async-std = { version = "1.12.0", features = ["attributes", "unstable"] }
derive_more = { version = "0.99.17", default-features = false, features = ["display", "from", "error"] }
gst = { version = "0.20.5", package = "gstreamer", default-features = false }
log = { version = "0.4.18", default-features = false }
serde = { version = "1.0.160", features = ["derive"] }
simple-logging = "2.0.2"
toml = "0.7.3"
# Optional dependencies
systemd = { version = "0.10.0", optional = true }
[features]
default = []
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true
codegen-units = 1