-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
45 lines (39 loc) · 931 Bytes
/
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
[package]
name = "cargo-appimage"
version = "2.2.0"
authors = [
"Isaac Mills <[email protected]>",
"Jim Hessin <[email protected]>",
]
edition = "2018"
license = "GPL-3.0"
description = "Converts your crate into an AppImage"
homepage = "https://github.com/StratusFearMe21/cargo-appimage"
repository = "https://github.com/StratusFearMe21/cargo-appimage"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cargo_toml = "0.17.1"
anyhow = "1.0.56"
platforms = "2.0.0"
fs_extra = "1.2.0"
exec = "0.3.1"
glob = "0.3.0"
cargo_metadata = "0.14.2"
memmap = "0.7.0"
[package.metadata.appimage]
assets = [".idea"]
[profile.release]
lto = "fat"
panic = "abort"
codegen-units = 1
[[bin]]
name = "cargo-appimage"
path = "src/main.rs"
test = false
doc = false
[[bin]]
name = "cargo-appimage-runner"
path = "src/apprun.rs"
test = false
doc = false