-
Notifications
You must be signed in to change notification settings - Fork 78
/
Cargo.toml
55 lines (51 loc) · 1.27 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
48
49
50
51
52
53
54
55
[package]
name = "cargo-bundle"
version = "0.6.1"
authors = ["George Burton <[email protected]>"]
license = "MIT OR Apache-2.0"
keywords = ["bundle", "cargo"]
repository = "https://github.com/burtonageo/cargo-bundle"
description = "Wrap rust executables in OS-specific app bundles"
edition = "2021"
[package.metadata.bundle.example.hello]
name = "hello"
identifier = "io.github.burtonageo.cargo-bundle.hello"
icon = ["examples/hello/icon*.png"]
category = "Utility"
short_description = "An example of a bundled application"
long_description = """
A trivial application that just displays a blank window with
a title bar. It serves as an example of an application that
can be bundled with cargo-bundle, as well as a test-case for
cargo-bundle's support for bundling crate examples.
"""
[dependencies]
ar = "0.9"
cab = "0.4"
cargo_metadata = "0.15"
chrono = "0.4"
clap = "^2"
dirs = "1.0"
error-chain = "0.12"
glob = "0.3"
icns = "0.3"
image = "0.12"
libflate = "1.2"
md5 = "0.7"
msi = "0.6"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1"
strsim = "0.10"
tar = "0.4"
target_build_utils = "0.3"
term = "0.4"
toml = "0.5"
uuid = { version = "1", features = ["v5"] }
walkdir = "2"
[dev-dependencies]
tempfile = "3"
winit = "0.24"
[[example]]
name = "hello"
path = "examples/hello/main.rs"