-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 724 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (26 loc) · 724 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
# Copyright 2024 Heath Stewart.
# Licensed under the MIT License. See LICENSE.txt in the project root for license information.
[package]
name = "msica"
version = "0.4.1"
edition = "2021"
license = "MIT"
description = "Rust for Windows Installer Custom Actions"
homepage = "https://github.com/heaths/msica-rs/"
repository = "https://github.com/heaths/msica-rs/"
[features]
default = []
nightly = []
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-pc-windows-msvc"
[[example]]
name = "deferred"
crate-type = ["cdylib"]
path = "examples/deferred/lib.rs"
required-features = ["nightly"]
[[example]]
name = "skip"
crate-type = ["cdylib"]
path = "examples/skip/lib.rs"
required-features = ["nightly"]