Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.10.0 #167

Merged
merged 3 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.9.0"
version = "0.10.0"
license = "MIT"
authors = ["Tyler Slabinski <[email protected]>", "Victoria Brekenfeld <[email protected]>"]
exclude = [".gitignore", ".github"]
Expand All @@ -12,7 +12,7 @@ resolver = "2" # Required to separate dev-dependencies.nix features
[dependencies]
bitflags = "2"
bytemuck = { version = "1.12", features = ["extern_crate_alloc", "derive"] }
drm-ffi = { path = "drm-ffi", version = "0.5.0" }
drm-ffi = { path = "drm-ffi", version = "0.6.0" }
drm-fourcc = "^2.2.0"

[dependencies.nix]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ found in `/dev/dri`, but can also be opened in other ways (ex. udev).

This crate does not provide a method of opening these files. Instead, the
user program must provide a way to access the file descriptor representing the
device through the [AsRawFd](https://doc.rust-lang.org/std/os/unix/io/trait.AsRawFd.html)
device through the [AsFd](https://doc.rust-lang.org/std/os/fd/trait.AsFd.html)
trait. Here is a basic example using `File` as a backend:

```rust
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,13 +2,13 @@
name = "drm-ffi"
description = "Safe, low-level bindings to the Direct Rendering Manager API"
repository = "https://github.com/Smithay/drm-rs"
version = "0.5.0"
version = "0.6.0"
license = "MIT"
authors = ["Tyler Slabinski <[email protected]>"]
rust-version = "1.65"

[dependencies]
drm-sys = { path = "drm-sys", version = "0.4.0" }
drm-sys = { path = "drm-sys", version = "0.5.0" }

[dependencies.nix]
version = "0.27"
Expand Down
2 changes: 1 addition & 1 deletion drm-ffi/drm-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "drm-sys"
description = "Bindings to the Direct Rendering Manager API"
version = "0.4.0"
version = "0.5.0"
authors = ["Tyler Slabinski <[email protected]>"]
license = "MIT"
build = "build.rs"
Expand Down
7 changes: 6 additions & 1 deletion drm-ffi/drm-sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ drm-sys = "..."

The following platforms have prebuilt bindings available:

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

If bindings for your target platform are not available, you can attempt to
Expand Down
Loading