Skip to content

Commit

Permalink
Merge pull request #14 from estie-inc/chore/ci-rust-versions
Browse files Browse the repository at this point in the history
test against rust stable/nightly versions
  • Loading branch information
kenkoooo authored Aug 14, 2024
2 parents 51c2063 + 3c4035d commit a5d8949
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [1.68, stable]
version: [1.68.0, stable]
name: Test with Rust ${{ matrix.version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ once_cell = "1.16"

[dev-dependencies]
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1.23", features = ["time", "rt-multi-thread", "macros"] }
tokio = { version = "=1.38", features = ["time", "rt-multi-thread", "macros"] }
2 changes: 1 addition & 1 deletion src/resolver.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use anyhow::Result;
use std::{collections::HashMap, env, usize};
use std::{collections::HashMap, env};

macro_rules! regex {
($re:literal $(,)?) => {{
Expand Down

0 comments on commit a5d8949

Please sign in to comment.