-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.3 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "rtpm"
version = "0.0.1"
authors = ["Rtop Development Team"]
edition = "2021"
description = "The official tool to simplify the management of plugins for Rtop."
repository = "https://github.com/RtopRS/RtopPluginManager"
readme = "README.md"
homepage = "https://github.com/RtopRS"
license = "MPL-2.0"
[profile.release]
codegen-units = 1
strip = true
lto = true
[package.metadata.deb]
extended-description = """\
The official tool to simplify the management of plugins for Rtop.\
It allows to download plugins from plugin repositories or from simple git repositories. It also allows to update them easily or to get information about the plugins."""
depends = "$auto,rtop"
section = "utility"
priority = "optional"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/rtpm", dest = "/usr/bin/rpm", mode = "0755" },
]
[package.metadata.generate-rpm.requires]
rtop = "*"
[package.metadata.arch]
[dependencies]
git2 = { version = "0.16.1", default-features = false, features = ["https"] }
reqwest = { version = "0.11.14", features = ["blocking", "json"] }
openssl = { version = "0.10.45", features = ["vendored"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.94"
itertools = "0.10.5"
colored = "2.0.0"
cargo = "0.66.0"
dirs = "4.0.0"
url = "2.3.1"
clap = "3.2"