-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
58 lines (51 loc) · 2.2 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
58
[package]
name = "embed-resource"
description = "A Cargo library to handle compilation and inclusion of Windows resources in the most resilient fashion imaginable"
documentation = "https://rawcdn.githack.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)
# Remember to also update in README
# Remember to also update in .github/workflows/msvc/test.py
# Remember to also update in .github/workflows/msvc/version.rc
version = "2.5.0"
authors = ["наб <[email protected]>",
"Cat Plus Plus <[email protected]>",
"Liigo <[email protected]>",
"azyobuzin <[email protected]>",
"Peter Atashian <[email protected]>",
"pravic <[email protected]>",
"Gabriel Majeri <[email protected]>",
"SonnyX",
"Johan Andersson <[email protected]>",
"Jordan Poles <[email protected]>",
"MSxDOS <[email protected]>",
"Jim McGrath <[email protected]>",
"roblabla <[email protected]>",
"Jasper Bekkers <[email protected]>",
"Richard Markiewicz <[email protected]>",
"Emerson de Freitas Barcelos <[email protected]>",
"Li Keqing <[email protected]>",
"Alexis Bourget <[email protected]>",
"Michael Farrell <[email protected]>",
"Jacob Okamoto <[email protected]>",
"Marijn Suijten <[email protected]>"]
exclude = ["*.enc"]
[dependencies]
rustc_version = "0.4"
toml = "0.8"
[target.'cfg(not(target_os = "windows"))'.dependencies]
memchr = "2.7"
cc = "1.0"
[target.'cfg(all(target_os = "windows", target_env = "msvc"))'.dependencies]
cc = "1.0"
vswhom = "0.1"
[target.'cfg(all(target_os = "windows", target_env = "msvc"))'.dependencies.winreg]
version = "0.52"
default-features = false
[workspace]
members = [".github/workflows/msvc"]