diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5f437e..b1eef7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,4 +79,4 @@ jobs: with: toolchain: nightly - name: Run minimal version build - run: cargo build -Z minimal-versions --features fancy,no-format-args-capture + run: cargo build -Z direct-minimal-versions --features fancy,no-format-args-capture diff --git a/Cargo.toml b/Cargo.toml index 4ffe9b8..0fa1685 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ futures = { version = "0.3", default-features = false } indenter = "0.3.3" rustversion = "1.0" trybuild = { version = "1.0.89", features = ["diff"] } -syn = { version = "2.0", features = ["full"] } +syn = { version = "2.0.48", features = ["full"] } regex = "1.10" lazy_static = "1.4" diff --git a/miette-derive/Cargo.toml b/miette-derive/Cargo.toml index 822f754..c1e4eb2 100644 --- a/miette-derive/Cargo.toml +++ b/miette-derive/Cargo.toml @@ -12,5 +12,5 @@ proc-macro = true [dependencies] proc-macro2 = "1.0.78" -quote = "1.0" +quote = "1.0.35" syn = "2.0.48"