diff --git a/Cargo.toml b/Cargo.toml index 77a15ae..f4ca9e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "drm" description = "Safe, low-level bindings to the Direct Rendering Manager API" repository = "https://github.com/Smithay/drm-rs" -version = "0.12.0" +version = "0.14.0" license = "MIT" authors = ["Tyler Slabinski ", "Victoria Brekenfeld "] exclude = [".gitignore", ".github"] @@ -12,7 +12,7 @@ edition = "2021" [dependencies] bitflags = "2" bytemuck = { version = "1.12", features = ["extern_crate_alloc", "derive"] } -drm-ffi = { path = "drm-ffi", version = "0.8.0" } +drm-ffi = { path = "drm-ffi", version = "0.9.0" } drm-fourcc = "^2.2.0" rustix = { version = "0.38.22", features = ["mm", "fs"] } diff --git a/drm-ffi/Cargo.toml b/drm-ffi/Cargo.toml index 927a53a..97068f1 100644 --- a/drm-ffi/Cargo.toml +++ b/drm-ffi/Cargo.toml @@ -2,14 +2,14 @@ name = "drm-ffi" description = "Safe, low-level bindings to the Direct Rendering Manager API" repository = "https://github.com/Smithay/drm-rs" -version = "0.8.0" +version = "0.9.0" license = "MIT" authors = ["Tyler Slabinski "] rust-version = "1.66" edition = "2021" [dependencies] -drm-sys = { path = "drm-sys", version = "0.7.0" } +drm-sys = { path = "drm-sys", version = "0.8.0" } rustix = { version = "0.38.22" } [features] diff --git a/drm-ffi/drm-sys/Cargo.toml b/drm-ffi/drm-sys/Cargo.toml index 4e3b722..efd551e 100644 --- a/drm-ffi/drm-sys/Cargo.toml +++ b/drm-ffi/drm-sys/Cargo.toml @@ -2,7 +2,7 @@ name = "drm-sys" description = "Bindings to the Direct Rendering Manager API" repository = "https://github.com/Smithay/drm-rs" -version = "0.7.0" +version = "0.8.0" authors = ["Tyler Slabinski "] license = "MIT" build = "build.rs"