From b869102f321ed833354bccc61615357518562cc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 20:43:58 +0000 Subject: [PATCH] chore(deps): bump rust-fsm from 0.6.2 to 0.7.0 Bumps [rust-fsm](https://github.com/eugene-babichenko/rust-fsm) from 0.6.2 to 0.7.0. - [Release notes](https://github.com/eugene-babichenko/rust-fsm/releases) - [Changelog](https://github.com/eugene-babichenko/rust-fsm/blob/master/CHANGELOG.md) - [Commits](https://github.com/eugene-babichenko/rust-fsm/compare/v0.6.2...v0.7.0) --- updated-dependencies: - dependency-name: rust-fsm dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 ++++++----- sapiens_exp/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df88dc8..4a00108 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2714,21 +2714,22 @@ dependencies = [ [[package]] name = "rust-fsm" -version = "0.6.2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "496dfc1e9384e6e6f53e1f0386825724d86c5b47a7f37ddcad84600744064144" +checksum = "cebef9e69ecb76b3cebbbe9c789f41f4be3402a33dca983c24493f45c92351c9" dependencies = [ "rust-fsm-dsl", ] [[package]] name = "rust-fsm-dsl" -version = "0.6.2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3967e3a7a0ff2cb3d652b971ddb7bb1404e4525f5074b2aa27a0ca723855109" +checksum = "b3adcbccd7feb6960e55a40d116a82ef40281248d630cfa3530586a49efbbd05" dependencies = [ + "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.66", ] [[package]] diff --git a/sapiens_exp/Cargo.toml b/sapiens_exp/Cargo.toml index 3c369b3..5bb991a 100644 --- a/sapiens_exp/Cargo.toml +++ b/sapiens_exp/Cargo.toml @@ -37,7 +37,7 @@ serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.120" serde_yaml = "0.9.34" -rust-fsm = "0.6.2" +rust-fsm = "0.7.0" pyo3 = { version = "0.20.3", features = [] } pyo3-asyncio = { version = "0.20.0", features = ["attributes", "tokio-runtime"] }