Skip to content

Commit

Permalink
Update version because of dependencies changes (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomXY committed Oct 27, 2021
1 parent 469df4d commit 56c4af4
Showing 1 changed file with 38 additions and 22 deletions.
60 changes: 38 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 = []

0 comments on commit 56c4af4

Please sign in to comment.