WayDrop/Cargo.toml

59 lines
1.3 KiB
TOML

[package]
name = "waydrop"
version = "0.1.0"
authors = ["Pietro Brenna <pietro.brenna@briq.it>"]
edition = "2018"
license = "GPLv3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# vte-rs = "^0.4"
# vte-sys = "*"
#gio = "*"
#gio-sys = "*"
# gtk = { version = "*", features = ["v3_22"] }
# gdk-sys = "*"
# gdk = "*"
#gdk4 = "*"
#pango = "*"
# crossbeam-channel = "*"
#glib = "*"
#glib-sys = "*"
zbus = "1.0.0"
zvariant = "*"
# structopt = { version = "0.3.21", default_features = false }
[dependencies.gtk]
package = "gtk4"
version = "^0.6.2"
features = ["v4_10"]
# jsonrpc-ipc-server = "^14.0"
# jsonrpc-derive = "*"
# jsonrpc-core = "*"
# jsonrpc-core-client = "*"
[[bin]]
name = "waydrop"
path = "src/main.rs"
[[bin]]
name = "asd"
path = "src/asd.rs"
[[bin]]
name = "waydrop-ctl"
path = "src/waydrop-ctl.rs"
[package.metadata.deb]
maintainer = "Pietro Brenna <pietro.brenna@briq.it>"
copyright = "2021, Pietro Brenna <pietro.brenna@briq.it>"
extended-description = """\
A drop down terminal for wayland.
"""
maintainer-scripts="./debian/"
depends = "$auto"
assets = [
["target/release/waydrop", "usr/bin/", "755"],
["target/release/waydrop-ctl", "usr/bin/", "755"],
["debian/waydrop.desktop", "usr/share/applications/", "755"],
]
systemd-units = { enable = true }