Skip to content

Commit

Permalink
Convert crate json to jzon, and update incompatible MSRV (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
a1ecbr0wn authored Aug 6, 2024
1 parent f901025 commit 496642e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion alienware/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation = "https://docs.rs/alienware"
readme = "README.md"
keywords = ["alienware", "sysfs", "led"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
rust-version = "1.58"
rust-version = "1.70"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 2 additions & 2 deletions alienware_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://github.com/a1ecbr0wn/alienware-wmi"
readme = "README.md"
keywords = ["alienware", "sysfs", "led"]
categories = ["command-line-utilities", "hardware-support"]
rust-version = "1.58"
rust-version = "1.70"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -21,6 +21,6 @@ name = "alienware-cli"
[dependencies]
alienware = { path = "../alienware", version = "1.0.12" }
clap = { version = "4.5", features = ["derive"] }
json = "0.12.4"
jzon = "0.12.5"
regex = "1"
snapcraft = "0.4"
2 changes: 1 addition & 1 deletion alienware_cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ mod cli;

use alienware::{Alienware, Zone};
use clap::Parser;
use json::object;
use jzon::object;
use regex::Regex;
use snapcraft::in_snap;
use std::io::ErrorKind;
Expand Down

0 comments on commit 496642e

Please sign in to comment.