2025-05-01 19:25:15 +09:00
|
|
|
[package]
|
|
|
|
|
authors = ["The winit contributors", "Kirill Chibisov <contact@kchibisov.com>"]
|
|
|
|
|
categories = ["gui"]
|
|
|
|
|
description = "winit core API."
|
|
|
|
|
documentation = "https://docs.rs/winit-core"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
keywords = ["windowing"]
|
|
|
|
|
license.workspace = true
|
|
|
|
|
name = "winit-core"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
2025-06-08 02:22:58 +02:00
|
|
|
version.workspace = true
|
2025-05-01 19:25:15 +09:00
|
|
|
|
|
|
|
|
[features]
|
2025-06-07 09:47:47 +02:00
|
|
|
serde = [
|
|
|
|
|
"dep:serde",
|
|
|
|
|
"bitflags/serde",
|
|
|
|
|
"cursor-icon/serde",
|
|
|
|
|
"dpi/serde",
|
|
|
|
|
"keyboard-types/serde",
|
|
|
|
|
"smol_str/serde",
|
|
|
|
|
]
|
2025-05-01 19:25:15 +09:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-05-21 08:45:12 +02:00
|
|
|
bitflags.workspace = true
|
|
|
|
|
cursor-icon.workspace = true
|
|
|
|
|
dpi.workspace = true
|
2025-06-07 09:47:47 +02:00
|
|
|
keyboard-types.workspace = true
|
2025-05-21 08:45:12 +02:00
|
|
|
rwh_06.workspace = true
|
2025-05-01 19:25:15 +09:00
|
|
|
serde = { workspace = true, optional = true }
|
2025-05-21 08:45:12 +02:00
|
|
|
smol_str.workspace = true
|
2025-05-01 19:25:15 +09:00
|
|
|
|
2025-06-06 13:24:01 +02:00
|
|
|
# `wasm32-unknown-unknown` and `wasm32-none`, but not `wasm32-wasi`.
|
|
|
|
|
[target.'cfg(all(target_family = "wasm", any(target_os = "unknown", target_os = "none")))'.dependencies]
|
2025-05-21 08:45:12 +02:00
|
|
|
web-time.workspace = true
|
2025-05-01 19:25:15 +09:00
|
|
|
|
2025-05-03 21:25:22 +09:00
|
|
|
[dev-dependencies]
|
2025-05-21 08:45:12 +02:00
|
|
|
winit.workspace = true
|