diff options
-rw-r--r-- | ports/cef/Cargo.lock | 13 | ||||
-rw-r--r-- | ports/cef/Cargo.toml | 2 | ||||
-rw-r--r-- | python/tidy.py | 2 |
3 files changed, 3 insertions, 14 deletions
diff --git a/ports/cef/Cargo.lock b/ports/cef/Cargo.lock index 1c0c15e90cf..db38b7e7a2c 100644 --- a/ports/cef/Cargo.lock +++ b/ports/cef/Cargo.lock @@ -4,7 +4,7 @@ version = "0.0.1" dependencies = [ "azure 0.4.0 (git+https://github.com/servo/rust-azure)", "cgl 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cocoa 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "cocoa 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "compositing 0.0.1", "core-foundation 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "core-graphics 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -214,17 +214,6 @@ dependencies = [ [[package]] name = "cocoa" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "core-graphics 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "objc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "cocoa" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ diff --git a/ports/cef/Cargo.toml b/ports/cef/Cargo.toml index c11fba7d8e1..b03fce61e53 100644 --- a/ports/cef/Cargo.toml +++ b/ports/cef/Cargo.toml @@ -66,7 +66,7 @@ features = ["plugins"] [target.x86_64-apple-darwin.dependencies] objc = "0.1" -cocoa = "0.1" +cocoa = "0.2" core-foundation = "0.2" core-graphics = "0.2" core-text = "1.0" diff --git a/python/tidy.py b/python/tidy.py index c474c601954..2e160a5703a 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -168,7 +168,7 @@ def check_lock(file_name, contents): raise StopIteration # package names to be neglected (as named by cargo) - exceptions = ["cocoa"] + exceptions = [] import toml content = toml.loads(contents) |