-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (25 loc) · 930 Bytes
/
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
[package]
name = "oaidl"
version = "0.1.4"
authors = ["ZerothLaw <[email protected]>"]
description = "Crate to manage conversions to/from SAFEARRAY, VARIANT, and BSTR data structures in COM interop"
license = "MIT"
repository = "https://github.com/ZerothLaw/oaidl-safe"
readme = "README.md"
keywords = ["COM", "interop", "safearray", "variant"]
categories = ["api-bindings", "development-tools::ffi", "os::windows-apis"]
documentation = "https://docs.rs/oaidl/0.1.4/x86_64-pc-windows-msvc/oaidl/"
[dependencies]
# mandatory packages
rust_decimal = "0.10.1"
widestring = "0.4.0"
winapi = {version = "0.3.6", features = ["minwindef", "ntdef", "oaidl", "oleauto", "unknwnbase", "wtypes"]}
failure = "0.1.2"
# Optional packages
serde = {version = "1.0", optional = true, features = ["derive"]}
[features]
default = []
impl_tryfrom = []
[package.metadata.docs.rs]
features = ["default"]
default-target = "x86_64-pc-windows-msvc"