mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-28 07:33:14 -04:00
23 lines
503 B
TOML
23 lines
503 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"]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, optional = true }
|