25 lines
572 B
TOML
25 lines
572 B
TOML
[package]
|
|
name = "pop-launcher-bin"
|
|
version = "1.2.4"
|
|
license = "GPL-3.0-only"
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
pop-launcher-toolkit = { path = "../toolkit" }
|
|
tracing.workspace = true
|
|
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
|
|
"std",
|
|
"fmt",
|
|
"env-filter",
|
|
"chrono",
|
|
] }
|
|
tracing-journald = "0.3.0"
|
|
dirs.workspace = true
|
|
mimalloc = "0.1.43"
|
|
|
|
[dependencies.tokio]
|
|
workspace = true
|
|
features = ["rt"]
|