From 56c4af48f9cc66f34594d5521428bfcc7f81e093 Mon Sep 17 00:00:00 2001 From: Alexey Danilevich Date: Wed, 27 Oct 2021 18:22:41 +0300 Subject: [PATCH] Update version because of dependencies changes (#49) --- Cargo.toml | 60 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 22 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a25de4e..73017c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,29 +1,45 @@ +# +# Copyright 2018-2020 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' -build = 'build.rs' -name = 'ton_vm' -version = '1.8.19' +edition = "2018" +build = "build.rs" +name = "ton_vm" +version = "1.8.20" [dependencies] +ton_types = { git = "https://github.com/tonlabs/ton-labs-types.git", tag = '1.10.11' } -ton_types = { git = 'https://github.com/tonlabs/ton-labs-types.git', tag = '1.10.10' } -ed25519 = '1.2' -ed25519-dalek = '1.0' -failure = '0.1' -hex = '0.4' -lazy_static = '1.4' -log = '0.4' -num = '0.4' -num-traits = '0.2' -rand = '0.7' -sha2 = '0.9' -ton_labs_assembler = { git = 'https://github.com/tonlabs/ton-labs-assembler.git', tag = '1.2.24' } +# External +ed25519 = "1.2" +ed25519-dalek = "1.0" +failure = "0.1" +hex = "0.4" +lazy_static = "1.4" +log = "0.4" +num = "0.4" +num-traits = "0.2" +rand = "0.7" +sha2 = "0.9" -[features] -ci_run = [ ] -fift_check = [ ] -log_file = [ ] -verbose = [ ] +ton_labs_assembler = { git = "https://github.com/tonlabs/ton-labs-assembler.git", tag = '1.2.25' } + +[features] +ci_run = [] +fift_check = [] +log_file = [] +verbose = []