Skip to content

Commit

Permalink
Ensure msrv is correct
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Young <[email protected]>
  • Loading branch information
seanyoung committed Apr 2, 2024
1 parent aa74fc2 commit 9ce6ca1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ repository = "https://github.com/seanyoung/cir"
edition = "2021"
description = "Linux Infrared Tooling"
license = "MIT"
rust-version = "1.70.0"
exclude = [ "/.git*", "/testdata", "/tests" ]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion irp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation = "https://docs.rs/irp/"
keywords = [ "IRP", "IR", "infrared", "pronto" ]
readme = "README.md"
license = "MIT"
rust-version = "1.67.0"
rust-version = "1.68.0"
exclude = [ "/doc", "/tests" ]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion irp/src/build_nfa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub(crate) struct Edge {
}

#[derive(PartialEq, Debug, Hash, Eq, Clone)]
pub enum Length {
pub(crate) enum Length {
Expression(Rc<Expression>),
Range(u32, u32),
}
Expand Down

0 comments on commit 9ce6ca1

Please sign in to comment.