diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0da36e84b..3e05f11d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,11 +22,11 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - rust: ["stable", "1.86"] + rust: ["stable", "1.87"] flags: ["", "--all-features"] exclude: # Skip because some features have higher MSRV. - - rust: "1.86" # MSRV + - rust: "1.87" # MSRV flags: "--all-features" steps: - uses: actions/checkout@v4 diff --git a/Cargo.toml b/Cargo.toml index c8c3eef95..a21004889 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" [workspace.package] authors = ["Foundry Maintainers"] version = "0.16.3" -rust-version = "1.86" +rust-version = "1.87" readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/foundry-rs/compilers" @@ -54,8 +54,8 @@ semver = { version = "1.0", features = ["serde"] } serde = { version = "1", features = ["derive", "rc"] } serde_json = "1.0" similar-asserts = "1" -solar-parse = { version = "=0.1.3", default-features = false } -solar-sema = { version = "=0.1.3", default-features = false } +solar-parse = { version = "=0.1.4", default-features = false } +solar-sema = { version = "=0.1.4", default-features = false } svm = { package = "svm-rs", version = "0.5", default-features = false } tempfile = "3.9" thiserror = "2"