From c2ee836078eb15809dd4e5df070b72fd68a284b6 Mon Sep 17 00:00:00 2001 From: Alexey Danilevich Date: Wed, 27 Oct 2021 18:35:15 +0300 Subject: [PATCH] Update version because of dependensies changes (#28) --- Cargo.toml | 44 +++++++++++++++++++++++++++++--------------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index edd4175..243ef55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,22 +1,36 @@ +# +# Copyright 2018-2021 TON DEV SOLUTIONS LTD. +# +# Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use +# this file except in compliance with the License. You may obtain a copy of the +# License at: +# +# https://www.ton.dev/licenses +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific TON DEV software governing permissions and limitations +# under the License. +# [package] - -edition = '2018' -name = 'ton_block_json' -version = '0.6.24' -build = 'build.rs' +edition = "2018" +name = "ton_block_json" +version = "0.6.25" +build = "build.rs" [dependencies] +ton_types = { git = "https://github.com/tonlabs/ton-labs-types.git", tag = '1.10.11' } +ton_block = { git = "https://github.com/tonlabs/ton-labs-block.git", tag = '1.7.28' } -ton_types = { git = 'https://github.com/tonlabs/ton-labs-types.git', tag = '1.10.10' } -ton_block = { git = 'https://github.com/tonlabs/ton-labs-block.git', tag = '1.7.27' } -base64 = '0.11.0' -failure = '0.1.8' -hex = '0.4.0' -num = '^0.2' -num-traits = '0.2' -serde = '1.0.105' -serde_derive = '1.0.105' -serde_json = { version = '^1.0', features = [ 'preserve_order' ] } +base64 = "0.11.0" +failure = "0.1.8" +hex = "0.4.0" +num = "^0.2" +num-traits = "0.2" +serde = "1.0.105" +serde_derive = "1.0.105" +serde_json = {version = "^1.0", features = ["preserve_order"]} [dev-dependencies]