-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
57 lines (51 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "cargo-wix"
description = "Build Windows installers using the WiX Toolset"
version = "0.3.8"
authors = ["Christopher Field <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/volks73/cargo-wix"
documentation = "https://volks73.github.io/cargo-wix"
categories = ["development-tools"]
keywords = ["cargo-subcommand", "installer", "wix-toolset", "wix"]
homepage = "https://github.com/volks73/cargo-wix"
readme = "README.md"
edition = "2021"
exclude = ["/.github"]
rust-version = "1.70.0"
[[bin]]
name = "cargo-wix"
[lib]
name = "wix"
[dependencies]
camino = "1"
chrono = "0.4"
clap = "4"
encoding_rs_io = "0.1"
env_logger = "0.10"
itertools = "0.11"
lazy_static = "1"
log = "0.4"
mustache = "0.9"
regex = "1"
rustc-cfg = "0.5"
semver = "1"
sxd-document = "0.3"
sxd-xpath = "0.4"
termcolor = "1"
uuid = { version = "1", features = ["v4"] }
cargo_metadata = "0.18"
serde_json = "1.0"
[dev-dependencies]
assert_fs = "1.0"
maplit = "1"
predicates = "3"
serial_test = "2"
toml = "0.8"
[workspace]
members = [
"xtask"
]
[badges]
is-it-maintained-issue-resolution = { repository = "volks73/cargo-wix" }
is-it-maintained-open-issues = { repository = "volks73/cargo-wix" }