winit-sonoma-fix/Cargo.toml

133 lines
3.6 KiB
TOML
Raw Normal View History

2014-07-27 18:55:37 +10:00
[package]
name = "winit"
2022-01-06 01:38:59 +11:00
version = "0.26.1"
2018-09-11 14:23:48 +10:00
authors = ["The winit contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
description = "Cross-platform window creation library."
2022-01-13 16:59:57 +11:00
edition = "2021"
keywords = ["windowing"]
2014-11-13 19:01:30 +11:00
license = "Apache-2.0"
2014-11-14 18:54:04 +11:00
readme = "README.md"
repository = "https://github.com/rust-windowing/winit"
documentation = "https://docs.rs/winit"
2017-01-31 20:01:36 +11:00
categories = ["gui"]
2014-07-27 18:55:37 +10:00
[package.metadata.docs.rs]
features = ["serde"]
2020-04-20 05:37:13 +10:00
default-target = "x86_64-unknown-linux-gnu"
targets = ["i686-pc-windows-msvc", "x86_64-pc-windows-msvc", "i686-unknown-linux-gnu", "x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "wasm32-unknown-unknown"]
2018-05-08 07:36:21 +10:00
[features]
default = ["x11", "wayland", "wayland-dlopen"]
x11 = ["x11-dl", "mio", "percent-encoding", "parking_lot"]
wayland = ["wayland-client", "wayland-protocols", "sctk"]
wayland-dlopen = ["sctk/dlopen", "wayland-client/dlopen"]
2015-02-06 19:21:55 +11:00
[dependencies]
instant = { version = "0.1", features = ["wasm-bindgen"] }
lazy_static = "1"
log = "0.4"
serde = { version = "1", optional = true, features = ["serde_derive"] }
raw-window-handle = "0.4.2"
bitflags = "1"
mint = { version = "0.5.6", optional = true }
2019-02-24 12:59:00 +11:00
[dev-dependencies]
image = { version = "0.24.0", default-features = false, features = ["png"] }
simple_logger = "2.1.0"
2019-02-24 12:59:00 +11:00
[target.'cfg(target_os = "android")'.dependencies]
ndk = "0.6"
ndk-sys = "0.3"
ndk-glue = "0.6"
2015-01-01 09:10:29 +11:00
[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
objc = "0.2.7"
2015-09-22 02:57:35 +10:00
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.24"
2020-09-08 06:43:51 +10:00
core-foundation = "0.9"
core-graphics = "0.22"
dispatch = "0.2.0"
2015-01-10 20:56:47 +11:00
[target.'cfg(target_os = "macos")'.dependencies.core-video-sys]
version = "0.1.4"
default_features = false
features = ["display_link"]
[target.'cfg(target_os = "windows")'.dependencies]
parking_lot = "0.11"
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3.9"
features = [
2018-06-13 01:58:18 +10:00
"combaseapi",
Event Loop 2.0 API and Windows implementation (#638) * Rename EventsLoop and associated types to EventLoop * Rename WindowEvent::Refresh to WindowEvent::Redraw * Remove second thread from win32 backend * Update run_forever to hijack thread * Replace windows Mutex with parking_lot Mutex * Implement new ControlFlow and associated events * Add StartCause::Init support, timer example * Add ability to send custom user events * Fully invert windows control flow so win32 calls into winit's callback * Add request_redraw * Rename platform to platform_impl * Rename os to platform, add Ext trait postfixes * Add platform::desktop module with EventLoopExt::run_return * Re-organize into module structure * Improve documentation * Small changes to examples * Improve docs for run and run_return * Change instances of "events_loop" to "event_loop" * Rename MonitorId to MonitorHandle * Add CHANGELOG entry * Improve WaitUntil timer precision * When SendEvent is called during event closure, buffer events * Fix resize lag when waiting in some situations * Update send test and errors that broke some examples/APIs * Improve clarity/fix typos in docs * Fix unreachable panic after setting ControlFlow to Poll during some RedrawRequested events. * Fix crash when running in release mode * Remove crossbeam dependency and make drop events work again * Remove serde implementations from ControlFlow * Fix 1.24.1 build * Fix freeze when setting decorations * Replace &EventLoop in callback with &EventLoopWindowTarget * Document and implement Debug for EventLoopWindowTarget * Fix some deadlocks that could occur when changing window state * Fix thread executor not executing closure when called from non-loop thread * Fix buffered events not getting dispatched * Fix crash with runner refcell not getting dropped * Address review feedback * Fix CHANGELOG typo * Catch panics in user callback
2019-02-06 02:30:33 +11:00
"commctrl",
"dwmapi",
"errhandlingapi",
"imm",
"hidusage",
2018-06-13 01:58:18 +10:00
"libloaderapi",
"objbase",
"ole2",
2018-06-13 01:58:18 +10:00
"processthreadsapi",
"shellapi",
2018-06-15 09:42:18 +10:00
"shellscalingapi",
2018-06-13 01:58:18 +10:00
"shobjidl_core",
"unknwnbase",
"winbase",
2018-06-13 01:58:18 +10:00
"windowsx",
"winerror",
2018-06-13 01:58:18 +10:00
"wingdi",
"winnt",
"winuser",
"mmsystem",
"timeapi"
]
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
wayland-client = { version = "0.29", default_features = false, features = ["use_system_lib"], optional = true }
wayland-protocols = { version = "0.29", features = [ "staging_protocols"], optional = true }
sctk = { package = "smithay-client-toolkit", version = "0.15.1", default_features = false, features = ["calloop"], optional = true }
2021-11-20 11:42:23 +11:00
mio = { version = "0.8", features = ["os-ext"], optional = true }
x11-dl = { version = "2.18.5", optional = true }
percent-encoding = { version = "2.0", optional = true }
parking_lot = { version = "0.11.0", optional = true }
libc = "0.2.64"
[target.'cfg(target_arch = "wasm32")'.dependencies.web_sys]
package = "web-sys"
2019-06-04 15:51:01 +10:00
version = "0.3.22"
features = [
2019-06-06 15:58:11 +10:00
'console',
"AddEventListenerOptions",
'CssStyleDeclaration',
'BeforeUnloadEvent',
2019-06-04 15:51:01 +10:00
'Document',
2019-06-05 16:08:09 +10:00
'DomRect',
'Element',
2019-06-04 15:51:01 +10:00
'Event',
'EventTarget',
'FocusEvent',
'HtmlCanvasElement',
2019-06-05 16:08:09 +10:00
'HtmlElement',
2019-06-04 15:51:01 +10:00
'KeyboardEvent',
'MediaQueryList',
'MediaQueryListEvent',
2019-06-04 15:51:01 +10:00
'MouseEvent',
2019-06-05 16:08:09 +10:00
'Node',
2019-06-04 15:51:01 +10:00
'PointerEvent',
'Window',
'WheelEvent'
]
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2.45"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2020-09-28 00:47:47 +10:00
console_log = "0.2"
[workspace]
members = [
"run-wasm",
]