mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
Bumps [winit](https://github.com/rust-windowing/winit) from 0.30.9 to 0.30.10. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-windowing/winit/releases">winit's releases</a>.</em></p> <blockquote> <h2>Winit version 0.30.10</h2> <h3>Added</h3> <ul> <li>On Windows, add <code>IconExtWindows::from_resource_name</code>.</li> <li>On Windows, add <code>CursorGrabMode::Locked</code>.</li> <li>On Wayland, add <code>WindowExtWayland::xdg_toplevel</code>.</li> </ul> <h3>Changed</h3> <ul> <li>On macOS, no longer need control of the main <code>NSApplication</code> class (which means you can now override it yourself).</li> <li>On iOS, remove custom application delegates. You are now allowed to override the application delegate yourself.</li> <li>On iOS, no longer act as-if the application successfully open all URLs. Override <code>application:didFinishLaunchingWithOptions:</code> and provide the desired behaviour yourself.</li> </ul> <h3>Fixed</h3> <ul> <li>On Windows, fixed ~500 ms pause when clicking the title bar during continuous redraw.</li> <li>On macOS, <code>WindowExtMacOS::set_simple_fullscreen</code> now honors <code>WindowExtMacOS::set_borderless_game</code></li> <li>On X11 and Wayland, fixed pump_events with <code>Some(Duration::Zero)</code> blocking with <code>Wait</code> polling mode</li> <li>On Wayland, fixed a crash when consequently calling <code>set_cursor_grab</code> without pointer focus.</li> <li>On Wayland, ensure that external event loop is woken-up when using pump_events and integrating via <code>FD</code>.</li> <li>On Wayland, apply fractional scaling to custom cursors.</li> <li>On macOS, fixed <code>run_app_on_demand</code> returning without closing open windows.</li> <li>On macOS, fixed <code>VideoMode::refresh_rate_millihertz</code> for fractional refresh rates.</li> <li>On macOS, store monitor handle to avoid panics after going in/out of sleep.</li> <li>On macOS, allow certain invalid monitor handles and return <code>None</code> instead of panicking.</li> <li>On Windows, fixed <code>Ime::Preedit</code> cursor offset calculation.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="2385410366
"><code>2385410</code></a> Winit version 0.30.10</li> <li><a href="6db1343c0b
"><code>6db1343</code></a> wayland: bump wayland-rs to avoid yanked release</li> <li><a href="a26899a75d
"><code>a26899a</code></a> windows: fix incorrect cursor_range calculation in Ime::Preedit</li> <li><a href="80bddda641
"><code>80bddda</code></a> macOS: Fix monitors connected via certain Thunderbolt hubs</li> <li><a href="5f1e9f6cc1
"><code>5f1e9f6</code></a> macOS: Store UUID in MonitorHandle instead of CGDirectDisplayID</li> <li><a href="57baf72741
"><code>57baf72</code></a> Allow the user to register the application delegate on iOS</li> <li><a href="da7a09658a
"><code>da7a096</code></a> fix: Support fractional refresh rates in video modes on macOS (<a href="https://redirect.github.com/rust-windowing/winit/issues/4191">#4191</a>)</li> <li><a href="53321dc6f5
"><code>53321dc</code></a> Swizzle sendEvent: instead of subclassing NSApplication</li> <li><a href="6556cde246
"><code>6556cde</code></a> macOS: Close windows automatically when exiting</li> <li><a href="7672fd5657
"><code>7672fd5</code></a> wayland: support fractional scale for custom cursor</li> <li>Additional commits viewable in <a href="https://github.com/rust-windowing/winit/compare/v0.30.9...v0.30.10">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
143 lines
4.7 KiB
TOML
143 lines
4.7 KiB
TOML
[package]
|
|
name = "servoshell"
|
|
build = "build.rs"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "servoshell"
|
|
path = "lib.rs"
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "servo"
|
|
path = "main.rs"
|
|
bench = false
|
|
|
|
# Some of these dependencies are only needed for a specific target os, but
|
|
# since build-scripts can't detect the cargo target os at build-time, we
|
|
# must unconditionally add these dependencies. See https://github.com/rust-lang/cargo/issues/4932
|
|
[build-dependencies]
|
|
# macOS only
|
|
cc = "1.2"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[package.metadata.winres]
|
|
FileDescription = "Servo"
|
|
LegalCopyright = "© The Servo Project Developers"
|
|
OriginalFilename = "servo.exe"
|
|
ProductName = "Servo"
|
|
|
|
[features]
|
|
crown = ["libservo/crown"]
|
|
debugmozjs = ["libservo/debugmozjs"]
|
|
default = ["max_log_level", "webdriver", "webgpu", "webxr"]
|
|
jitspew = ["libservo/jitspew"]
|
|
js_backtrace = ["libservo/js_backtrace"]
|
|
max_log_level = ["log/release_max_level_info"]
|
|
media-gstreamer = ["libservo/media-gstreamer"]
|
|
native-bluetooth = ["libservo/native-bluetooth"]
|
|
profilemozjs = ["libservo/profilemozjs"]
|
|
refcell_backtrace = ["libservo/refcell_backtrace"]
|
|
tracing = ["dep:tracing", "dep:tracing-subscriber", "libservo/tracing"]
|
|
tracing-hitrace = ["tracing", "dep:hitrace"]
|
|
tracing-perfetto = ["tracing", "dep:tracing-perfetto"]
|
|
webdriver = ["libservo/webdriver"]
|
|
webgl_backtrace = ["libservo/webgl_backtrace"]
|
|
webgpu = ["libservo/webgpu"]
|
|
webxr = ["libservo/webxr"]
|
|
|
|
[dependencies]
|
|
cfg-if = { workspace = true }
|
|
dpi = { workspace = true }
|
|
euclid = { workspace = true }
|
|
getopts = { workspace = true }
|
|
hitrace = { workspace = true, optional = true }
|
|
icu_locid = "1.5.0"
|
|
image = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
libc = { workspace = true }
|
|
libservo = { path = "../../components/servo", features = ["background_hang_monitor", "bluetooth"] }
|
|
log = { workspace = true }
|
|
mime_guess = { workspace = true }
|
|
raw-window-handle = { workspace = true }
|
|
rustls = { workspace = true, features = ["aws-lc-rs"] }
|
|
servo-tracing = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|
|
tracing-perfetto = { workspace = true, optional = true }
|
|
tracing-subscriber = { workspace = true, optional = true, features = ["env-filter"] }
|
|
url = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
android_logger = "0.15"
|
|
ipc-channel = { workspace = true }
|
|
jni = "0.21.1"
|
|
libloading = "0.8"
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies]
|
|
backtrace = { workspace = true }
|
|
|
|
[target.'cfg(target_env = "ohos")'.dependencies]
|
|
env_filter = "0.1.3"
|
|
euclid = { workspace = true }
|
|
hilog = "0.2.0"
|
|
# force inprocess, until libc-rs 0.2.156 is released containing
|
|
# https://github.com/rust-lang/libc/commit/9e248e212c5602cb4e98676e4c21ea0382663a12
|
|
ipc-channel = { workspace = true, features = ["force-inprocess"] }
|
|
napi-derive-ohos = "1.0.4"
|
|
napi-ohos = "1.0.4"
|
|
ohos-ime = "0.2"
|
|
ohos-ime-sys = "0.1.4"
|
|
ohos-vsync = "0.1.3"
|
|
xcomponent-sys = { version = "0.3.1", features = ["api-12", "keyboard-types"] }
|
|
|
|
[target.'cfg(any(target_os = "android", target_env = "ohos"))'.dependencies]
|
|
nix = { workspace = true, features = ["fs"] }
|
|
serde_json = { workspace = true }
|
|
surfman = { workspace = true, features = ["sm-angle-default"] }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_env = "ohos")))'.dependencies]
|
|
dirs = "5.0"
|
|
egui = "0.31.1"
|
|
egui-file-dialog = "0.9.0"
|
|
egui-winit = { version = "0.31.1", default-features = false, features = ["clipboard", "wayland"] }
|
|
egui_glow = { version = "0.31.1", features = ["winit"] }
|
|
gilrs = "0.11.0"
|
|
gleam = { workspace = true }
|
|
glow = "0.16.0"
|
|
headers = { workspace = true }
|
|
http = { workspace = true }
|
|
net = { path = "../../components/net" }
|
|
net_traits = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
# For optional feature servo_allocator/use-system-allocator
|
|
servo_allocator = { path = "../../components/allocator" }
|
|
shellwords = "1.0.0"
|
|
surfman = { workspace = true, features = ["sm-raw-window-handle-06", "sm-x11"] }
|
|
winit = "0.30.10"
|
|
|
|
[target.'cfg(any(all(target_os = "linux", not(target_env = "ohos")), target_os = "macos"))'.dependencies]
|
|
sig = "1.0"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
libservo = { path = "../../components/servo", features = ["no-wgl"] }
|
|
windows-sys = { workspace = true, features = ["Win32_Graphics_Gdi"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
objc2-app-kit = { version = "0.2.2", default-features = false, features = [
|
|
"std",
|
|
"NSColorSpace",
|
|
"NSResponder",
|
|
"NSView",
|
|
"NSWindow",
|
|
] }
|
|
objc2-foundation = { version = "0.2.2", default-features = false, features = [
|
|
"std",
|
|
] }
|