Skip to content

Commit

Permalink
Dependencies upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
haimgel committed Nov 1, 2024
1 parent 30afd62 commit 8b48572
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "ddc-macos"
version = "0.2.0"
version = "0.3.0"
authors = ["Haim Gelfenbeyn <haim@g8n.me>"]
edition = "2018"
edition = "2021"
description = "DDC/CI monitor control on MacOS"
documentation = "http://haimgel.github.io/ddc-macos-rs/ddc_macos"
documentation = "https://haimgel.github.io/ddc-macos-rs/ddc_macos"
readme = "README.md"
repository = "https://github.com/haimgel/ddc-macos-rs"
license = "MIT"
keywords = ["ddc", "mccs", "vcp", "vesa", "macos"]
categories = ["hardware-support", "os::macos-apis"]

[dependencies]
core-foundation = "^0.9.1"
core-foundation-sys = "^0.8.1"
core-graphics = "^0.22.1"
ddc = "^0.2.0"
io-kit-sys = "0.1.0"
core-foundation = "^0.10.0"
core-foundation-sys = "^0.8.3"
core-graphics = "^0.24.0"
ddc = "^0.3.0"
io-kit-sys = "0.4.1"
mach = "^0.3.2"
thiserror = "^1"

Expand Down
2 changes: 1 addition & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
max_width = 120
edition = "2018"
edition = "2021"
use_try_shorthand = true
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
//! }
//! # }
//! ```
#![doc(html_root_url = "https://haimgel.github.io/ddc-macos-rs/")]

mod iokit;
mod monitor;
Expand Down
1 change: 0 additions & 1 deletion src/monitor.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![deny(missing_docs)]
#![doc(html_root_url = "http://haimgel.github.io/ddc-macos-rs/")]

use crate::iokit::display::*;
use crate::iokit::io2c_interface::*;
Expand Down

0 comments on commit 8b48572

Please sign in to comment.