Skip to content

Commit

Permalink
Update version, because of ton-types update (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomXY committed Oct 27, 2021
1 parent 0579490 commit 993d774
Showing 1 changed file with 36 additions and 19 deletions.
55 changes: 36 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,43 @@
#
# 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_block'
version = '1.7.27'
edition = "2018"
build = "build.rs"
name = "ton_block"
version = "1.7.28"

[target.'cfg(target_arch = "wasm32")'.dependencies]

clear_on_drop = { version = '0.2', features = [ 'no_cc' ] }
clear_on_drop = { version = "0.2", features = ["no_cc"] }

[dependencies]
ton_types = { git = "https://github.com/tonlabs/ton-labs-types.git", tag = '1.10.11' }

# External
base64 = "0.10.1"
crc = "^1.8.1"
ed25519 = "1.0.1"
ed25519-dalek = "1.0.0-pre.4"
failure = "0.1.7"
hex = "^0.4.0"
log = "0.4.8"
num = "^0.2"
num-traits = "^0.2.8"
rand = "0.7.2"
sha2 = "0.8.0"



ton_types = { git = 'https://github.com/tonlabs/ton-labs-types.git', tag = '1.10.10' }
base64 = '0.10.1'
crc = '^1.8.1'
ed25519 = '1.0.1'
ed25519-dalek = '1.0.0-pre.4'
failure = '0.1.7'
hex = '^0.4.0'
log = '0.4.8'
num = '^0.2'
num-traits = '^0.2.8'
rand = '0.7.2'
sha2 = '0.8.0'

0 comments on commit 993d774

Please sign in to comment.