1 | [package]
|
2 | name = "raw-window-handle"
|
3 | version = "0.6.0"
|
4 | authors = ["Osspial <osspial@gmail.com>" ]
|
5 | edition = "2021"
|
6 | description = "Interoperability library for Rust Windowing applications."
|
7 | license = "MIT OR Apache-2.0 OR Zlib"
|
8 | repository = "https://github.com/rust-windowing/raw-window-handle"
|
9 | keywords = ["windowing" ]
|
10 | readme = "README.md"
|
11 | documentation = "https://docs.rs/raw-window-handle"
|
12 | rust-version = "1.64"
|
13 |
|
14 | [features]
|
15 | alloc = []
|
16 | std = ["alloc" ]
|
17 |
|
18 | # Allow conversion methods to/from WASM types using `wasm-bindgen` v0.2.
|
19 | wasm-bindgen-0-2 = ["wasm-bindgen" , "std" ]
|
20 |
|
21 | [target.'cfg(target_family = "wasm")'.dependencies.wasm-bindgen]
|
22 | version = "0.2.87"
|
23 | default-features = false
|
24 | features = ["std" ]
|
25 | optional = true
|
26 |
|
27 | [package.metadata.docs.rs]
|
28 | all-features = true
|
29 | rustdoc-args = ["--cfg" , "docsrs" ]
|
30 | |