Skip to content

Commit

Permalink
Major version change for core-foundation, core-graphics, io-surface, …
Browse files Browse the repository at this point in the history
…core-text, cocoa.
  • Loading branch information
jdm committed Jun 29, 2020
1 parent 749c085 commit 56d8b6c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cocoa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default-target = "x86_64-apple-darwin"
block = "0.1"
bitflags = "1.0"
libc = "0.2"
core-foundation = { path = "../core-foundation", version = "0.7" }
core-graphics = { path = "../core-graphics", version = "0.19" }
core-foundation = { path = "../core-foundation", version = "0.8" }
core-graphics = { path = "../core-graphics", version = "0.20" }
foreign-types = "0.3"
objc = "0.2.3"
2 changes: 1 addition & 1 deletion core-foundation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "core-foundation"
description = "Bindings to Core Foundation for macOS"
homepage = "https://github.com/servo/core-foundation-rs"
repository = "https://github.com/servo/core-foundation-rs"
version = "0.7.1"
version = "0.8.0"
authors = ["The Servo Project Developers"]
license = "MIT / Apache-2.0"
categories = ["os::macos-apis"]
Expand Down
4 changes: 2 additions & 2 deletions core-graphics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "core-graphics"
description = "Bindings to Core Graphics for macOS"
homepage = "https://github.com/servo/core-graphics-rs"
repository = "https://github.com/servo/core-foundation-rs"
version = "0.19.2"
version = "0.20.0"
authors = ["The Servo Project Developers"]
license = "MIT / Apache-2.0"

Expand All @@ -14,6 +14,6 @@ highsierra = []

[dependencies]
bitflags = "1.0"
core-foundation = { path = "../core-foundation", version = "0.7" }
core-foundation = { path = "../core-foundation", version = "0.8" }
foreign-types = "0.3.0"
libc = "0.2"
4 changes: 2 additions & 2 deletions core-text/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ mountainlion = []
[dependencies]
foreign-types = "0.3"
libc = "0.2"
core-foundation = { path = "../core-foundation", version = "0.7" }
core-graphics = { path = "../core-graphics", version = "0.19.1" }
core-foundation = { path = "../core-foundation", version = "0.8" }
core-graphics = { path = "../core-graphics", version = "0.20.0" }
2 changes: 1 addition & 1 deletion io-surface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ default-target = "x86_64-apple-darwin"
[dependencies]
libc = "0.2"
gleam = "0.7"
core-foundation = { path = "../core-foundation", version = "0.7" }
core-foundation = { path = "../core-foundation", version = "0.8" }
cgl = "0.3"
leaky-cow = "0.1.1"
2 changes: 1 addition & 1 deletion io-surface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl IOSurface {
height,
BGRA as GLenum,
UNSIGNED_INT_8_8_8_8_REV,
self.as_concrete_TypeRef() as *mut c_void,
self.as_concrete_TypeRef() as *mut libc::c_void,
0);

if gl_error != kCGLNoError {
Expand Down

0 comments on commit 56d8b6c

Please sign in to comment.