From aed7f2ace0caa23143739387afaf6857cd64bebc Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Sat, 18 Mar 2023 12:11:24 +0100 Subject: [PATCH 1/2] Update to syn 2.0 All tests still pass and this crate wasn't really relying on much that changed. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c91a770..2b473a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ quote = { version = "1", default-features = false } unicode-xid = "0.2" [dependencies.syn] -version = "1" +version = "2" default-features = false features = ["derive", "parsing", "printing", "clone-impls", "visit", "extra-traits"] From 5b98aff9f92151203813781493b64173b2a364ac Mon Sep 17 00:00:00 2001 From: nils <48135649+Nilstrieb@users.noreply.github.com> Date: Tue, 21 Mar 2023 09:52:49 +0100 Subject: [PATCH 2/2] Bump CI to new syn MSRV --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69db6af..cf2b29b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [stable, 1.31.0] + rust: [stable, 1.56.1] include: - rust: nightly name: WebAssembly