-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (31 loc) · 1.19 KB
/
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
[package]
name = "kielip"
description = "Clipboard manager."
version = "0.2.3"
authors = ["Kaiyin Zhong <kindlychung@gmai.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# druid = { git = "https://github.com/linebender/druid.git", default_features=false, features = ["im",] }
druid = { git = "https://github.com/linebender/druid.git", features = ["im",] }
instant = "0.1.9"
x11-clipboard = "0.5.1"
ron = "0.6.4"
serde = { version = "1.0.118", features = ["derive"] }
once_cell = "1.5.2"
regex = "1.4.2"
rand = "0.8.0"
xshell = "0.1.8"
[package.metadata.bundle]
name = "Kielip"
identifier = "com.github.kindlychung.kielip"
icon = [ "128x128@2x.png", "128x128.png", "16x16@2x.png", "16x16.png", "256x256@2x.png", "256x256.png", "32x32@2x.png", "32x32.png", "64x64@2x.png", "64x64.png" ]
version = "0.2.3"
# resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
copyright = "Copyright (c) 2021 Kaiyin Zhong. All rights reserved."
category = "Utility"
short_description = "Clipboard manager"
long_description = """
Kielip is a clipboard manager written in Rust.
"""
deb_depends = ["zenity", "neovim-qt", "libgtk-3-dev"]