From d6e3665d26028be366ecf80673d6e0e492975700 Mon Sep 17 00:00:00 2001 From: StackOverflowExcept1on <109800286+StackOverflowExcept1on@users.noreply.github.com> Date: Tue, 16 Jan 2024 23:55:23 +0300 Subject: [PATCH] move to 1.0.5 --- Cargo.toml | 14 +++++++++++--- rust-toolchain.toml | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 868d5d6..4e18ed2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gstd-fluent" -version = "0.3.2" +version = "1.0.5" authors = ["Gear Technologies"] edition = "2021" description = "A wrapper over gstd that provides a fluent interface to interact with the Gear Protocol" @@ -10,9 +10,17 @@ keywords = ["gstd", "smart-contracts", "gear-tech", "gear-foundation"] categories = ["api-bindings", "no-std"] [dependencies] -gstd = { git = "https://github.com/gear-tech/gear.git", rev = "e9b6d89", default-features = false } +gstd = { git = "https://github.com/gear-tech/gear.git", rev = "d9de34e", default-features = false } [features] -default = ["panic-handler"] +default = ["panic-message"] + panic-handler = ["gstd/panic-handler"] +panic-message = ["gstd/panic-message"] +panic-location = ["gstd/panic-location"] + +nightly = ["gstd/nightly"] +panic-info-message = ["gstd/panic-info-message"] +oom-handler = ["gstd/oom-handler"] + debug = ["gstd/debug"] diff --git a/rust-toolchain.toml b/rust-toolchain.toml index bebef8b..a4b4cdc 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "nightly-2023-04-25" +channel = "nightly-2023-09-05" targets = ["wasm32-unknown-unknown"] profile = "minimal" components = ["rustfmt", "clippy"]