Skip to content

Commit

Permalink
Merge pull request #181 from Smithay/v0.11.0
Browse files Browse the repository at this point in the history
v0.11.0
  • Loading branch information
Drakulix authored Nov 14, 2023
2 parents c0ee108 + c72d393 commit f7ffcd0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0"
version = "0.11.0"
license = "MIT"
authors = ["Tyler Slabinski <[email protected]>", "Victoria Brekenfeld <[email protected]>"]
exclude = [".gitignore", ".github"]
Expand All @@ -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.6.0" }
drm-ffi = { path = "drm-ffi", version = "0.7.0" }
drm-fourcc = "^2.2.0"
rustix = { version = "0.38.22", features = ["mm", "fs"] }

Expand Down
4 changes: 2 additions & 2 deletions drm-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.0"
version = "0.7.0"
license = "MIT"
authors = ["Tyler Slabinski <[email protected]>"]
rust-version = "1.65"
edition = "2021"

[dependencies]
drm-sys = { path = "drm-sys", version = "0.5.0" }
drm-sys = { path = "drm-sys", version = "0.6.0" }
rustix = { version = "0.38.22" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion drm-ffi/drm-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "drm-sys"
description = "Bindings to the Direct Rendering Manager API"
repository = "https://github.com/Smithay/drm-rs"
version = "0.5.0"
version = "0.6.0"
authors = ["Tyler Slabinski <[email protected]>"]
license = "MIT"
build = "build.rs"
Expand Down
18 changes: 11 additions & 7 deletions drm-ffi/drm-sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ drm-sys = "..."

The following platforms have prebuilt bindings available:

* Linux/Android
* x86_64
* x86
* arm
* aarch64
* FreeBSD
* x86_64
* Linux
* \*BSD

The bindings are not architecture dependant, but CI testing only happens for:

* arm
* armv7
* aarch64
* riscv64gc
* i686
* x86\_64

If bindings for your target platform are not available, you can attempt to
generate them by enabling the `use_bindgen` feature:
Expand Down

0 comments on commit f7ffcd0

Please sign in to comment.