diff --git a/Cargo.toml b/Cargo.toml index 6eb5d61981..35a5a59aaf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ core-foundation = "0.9.3" objc2 = "0.4.1" [target.'cfg(target_os = "macos")'.dependencies] -core-graphics = "0.22.3" +core-graphics = "0.23.1" [target.'cfg(target_os = "macos")'.dependencies.icrate] version = "0.0.4" diff --git a/deny.toml b/deny.toml index db4f119fbc..eb551db8e7 100644 --- a/deny.toml +++ b/deny.toml @@ -31,16 +31,18 @@ multiple-versions = "deny" wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny/issues/241 is fixed deny = [] skip = [ - { name = "bitflags" }, # the ecosystem is in the process of migrating. - { name = "nix" }, # differing version - as of 2023-03-02 whis can be solved with `cargo update && cargo update -p calloop --precise 0.10.2` - { name = "memoffset"}, # due to different nix versions. - { name = "memmap2" }, # sctk uses a different version until the next update - { name = "libloading" }, # x11rb uses a different version until the next update - { name = "syn" }, # https://github.com/rust-mobile/ndk/issues/392 and https://github.com/rustwasm/wasm-bindgen/issues/3390 - { name = "num_enum"}, # See above ^, waiting for release - { name = "num_enum_derive"},# See above ^, waiting for release - { name = "miniz_oxide"}, # https://github.com/rust-lang/flate2-rs/issues/340 - { name = "redox_syscall" }, # https://gitlab.redox-os.org/redox-os/orbclient/-/issues/46 + { name = "bitflags" }, # the ecosystem is in the process of migrating. + { name = "nix" }, # differing version - as of 2023-03-02 whis can be solved with `cargo update && cargo update -p calloop --precise 0.10.2` + { name = "memoffset"}, # due to different nix versions. + { name = "memmap2" }, # sctk uses a different version until the next update + { name = "libloading" }, # x11rb uses a different version until the next update + { name = "syn" }, # https://github.com/rust-mobile/ndk/issues/392 + { name = "num_enum"}, # See above ^, waiting for release + { name = "num_enum_derive"}, # See above ^, waiting for release + { name = "miniz_oxide"}, # https://github.com/rust-lang/flate2-rs/issues/340 + { name = "redox_syscall" }, # https://gitlab.redox-os.org/redox-os/orbclient/-/issues/46 + { name = "foreign-types-shared" }, # https://github.com/servo/core-foundation-rs/issues/634 + { name = "foreign-types" }, # See above ^, waiting for release ] skip-tree = []