27 lines
630 B
TOML
27 lines
630 B
TOML
[package]
|
|
name = "remote"
|
|
version = "0.1.0"
|
|
build = "build.rs"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
path = "src/main.rs"
|
|
name = "remote"
|
|
|
|
[dependencies]
|
|
lib = {path = "../lib"}
|
|
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.10"
|
|
|
|
slint-interpreter = {git = "https://github.com/slint-ui/slint", features = ["display-diagnostics"]}
|
|
spin_on = "0.1"
|
|
slint = { git = "https://github.com/slint-ui/slint" }
|
|
|
|
[build-dependencies]
|
|
# slint-build = { git = "https://github.com/slint-ui/slint" }
|
|
coop_widgets = { git = "https://codeberg.org/flovansl/co_sl" }
|