forked from nabijaczleweli/rust-embed-resource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (22 loc) · 1.05 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
[package]
name = "embed-resource"
description = "A Cargo library to handle compilation and inclusion of Windows resources in the most resilient fashion imaginable"
documentation = "https://cdn.rawgit.com/nabijaczleweli/rust-embed-resource/doc/embed_resource/index.html"
repository = "https://github.com/nabijaczleweli/rust-embed-resource"
readme = "README.md"
keywords = ["cargo", "build", "windows", "resource", "manifest"]
categories = ["development-tools", "os::windows-apis"]
license = "MIT"
# Remember to also update in appveyor.yml
# Remember to also update in src/lib.rs ~L40 (Cargo.toml example)
version = "1.1.2"
authors = ["nabijaczleweli <nabijaczleweli@gmail.com>",
"Cat Plus Plus <piotrlegnica@piotrl.pl>",
"Liigo <liigo@qq.com>",
"azyobuzin <azyobuzin@users.sourceforge.jp>",
"Peter Atashian <retep998@gmail.com>",
"Daniel Abramov <dabramov@snapview.de>",]
exclude = ["*.enc"]
[target.'cfg(all(target_os = "windows", target_env = "msvc"))'.dependencies.winreg]
version = "0.4"
default-features = false