-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
57 lines (52 loc) · 1.4 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
[workspace]
members = [
"crates/update-bindings",
"crates/mapi-stub",
"crates/mapi-sys",
"crates/mapi",
]
resolver = "2"
[patch.crates-io]
outlook-mapi-sys = { path = "crates/mapi-sys/" }
outlook-mapi-stub = { path = "crates/mapi-stub" }
[workspace.package]
authors = [ "Microsoft" ]
edition = "2021"
rust-version = "1.76"
repository = "https://github.com/microsoft/mapi-rs"
license = "MIT"
keywords = [ "win32", "outlook", "mapi" ]
categories = [ "os::windows-apis" ]
[workspace.dependencies]
outlook-mapi-stub = "0.3.0"
outlook-mapi-sys = { version = "0.6.2", default-features = false }
cmake = "0.1"
proc-macro2 = "1.0"
quote = "1.0"
regex = "1.10"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
syn = { version = "2.0", features = [ "full" ] }
thiserror = "1.0"
windows-bindgen = { version = "0.58", features = [ "metadata" ] }
windows-core = "0.58"
windows-implement = "0.58"
windows-interface = "0.58"
[workspace.dependencies.windows]
version = "0.58"
features = [
"implement",
"Win32_Globalization",
"Win32_Graphics_Gdi",
"Win32_Security_Cryptography",
"Win32_Storage_Imapi",
"Win32_System_AddressBook",
"Win32_System_Com_StructuredStorage",
"Win32_System_Com_Urlmon",
"Win32_System_LibraryLoader",
"Win32_System_Ole",
"Win32_System_Registry",
"Win32_System_Variant",
"Win32_System_WinRT",
"Win32_UI_WindowsAndMessaging",
]