mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
- Update CHANGELOG - Add documentation to items I forgot to document - Trait implementations Signed-off-by: John Nunley <dev@notgull.net>
33 lines
799 B
TOML
33 lines
799 B
TOML
[package]
|
|
name = "winit-core"
|
|
version = "0.1.0"
|
|
authors = ["The winit contributors"]
|
|
description = "Base types for windowing libraries"
|
|
edition = "2021"
|
|
keywords = ["windowing"]
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/rust-windowing/winit"
|
|
documentation = "https://docs.rs/winit"
|
|
categories = ["gui"]
|
|
rust-version = "1.70.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["alloc"]
|
|
alloc = []
|
|
serde = ["dep:serde", "cursor-icon/serde", "smol_str/serde"]
|
|
|
|
[dependencies]
|
|
bitflags.workspace = true
|
|
cursor-icon.workspace = true
|
|
mint = { version = "0.5.6", optional = true }
|
|
serde = { workspace = true, optional = true }
|
|
smol_str.workspace = true
|
|
|
|
[target.'cfg(target_family = "wasm")'.dependencies]
|
|
web-time.workspace = true
|
|
|
|
[build-dependencies]
|
|
cfg_aliases.workspace = true
|