chore: Move dpi.rs to winit-core wholesale

Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley
2024-02-04 10:28:57 -08:00
parent 623b3e5070
commit 557464489e
6 changed files with 10 additions and 2 deletions

View File

@@ -16,3 +16,7 @@ rust-version = "1.70.0"
default = ["std"]
std = ["alloc"]
alloc = []
serde = ["dep:serde"]
[dependencies]
serde = { workspace = true, optional = true }

1004
winit-core/src/dpi.rs Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -10,4 +10,5 @@
#[cfg(any(not(feature = "std"), not(feature = "alloc")))]
compile_error! { "no-std and no-alloc usage are not yet supported" }
pub mod dpi;
pub mod error;