-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 941 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 941 Bytes
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 = "cargo-emerge"
version = "0.2.0"
edition = "2024"
description = "Emerge Application Setup Generation Tool"
authors = ["EMERGE Developers"]
license = "Apache-2.0 OR MIT"
include = ["src/**/*.rs", "Cargo.toml"]
repository = "https://github.com/aspectron/emerge"
[dependencies]
clap = { version = "4", features = ["cargo", "env"] }
thiserror = "2"
cliclack = "0.3.6"
zip = { version = "5.1.1", default-features = false, features = ["deflate"] }
tar = "0.4"
flate2 = "1"
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
icns = "0.3"
serde = { version = "1", features = ["derive"] }
toml = "0.9.7"
walkdir = "2"
time = { version = "0.3", features = ["macros"] }
[package.metadata.emerge]
title = "Emerge"
filename = "emerge-$PLATFORM-$VERSION"
output-folder = "setup"
build = ["cargo build --release"]
copy = [
{ "target/release/emerge" = "emerge" },
{ "README.md" = "README.md" },
]