From 9d12f1aa8c6f2c102bff428af43db9d43c14bbdf Mon Sep 17 00:00:00 2001 From: Soares Chen Date: Thu, 16 Jan 2025 16:18:43 +0100 Subject: [PATCH] Update Rust to v1.84 (#58) --- Cargo.toml | 4 ++-- crates/cgp-runtime/src/traits/has_runtime.rs | 1 - rust-toolchain.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ff9c188..f195d42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace] -resolver = "2" +resolver = "3" members = [ "crates/cgp", @@ -27,7 +27,7 @@ members = [ ] [workspace.package] -rust-version = "1.83" +rust-version = "1.84" edition = "2021" license = "Apache-2.0" repository = "https://github.com/contextgeneric/cgp" diff --git a/crates/cgp-runtime/src/traits/has_runtime.rs b/crates/cgp-runtime/src/traits/has_runtime.rs index 54f96a4..acec4b3 100644 --- a/crates/cgp-runtime/src/traits/has_runtime.rs +++ b/crates/cgp-runtime/src/traits/has_runtime.rs @@ -3,7 +3,6 @@ use cgp_core::prelude::*; use crate::HasRuntimeType; #[cgp_getter { - context: App, provider: RuntimeGetter, }] pub trait HasRuntime: HasRuntimeType { diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 2a53366..88d2c65 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.83" +channel = "1.84" profile = "default"