Skip to content

Commit

Permalink
Update public version
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomXY committed Dec 8, 2021
1 parent acb1400 commit 75af081
Show file tree
Hide file tree
Showing 8 changed files with 696 additions and 236 deletions.
47 changes: 16 additions & 31 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,21 @@
#
# 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.26"
build = "build.rs"
build = 'build.rs'
edition = '2018'
name = 'ton_block_json'
version = '0.6.32'

[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.29' }

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 = { features = [ 'preserve_order' ], version = '^1.0' }
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.35' }
ton_types = { git = 'https://github.com/tonlabs/ton-labs-types', tag = '1.10.12' }

[dev-dependencies]


875 changes: 674 additions & 201 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2020 TON DEV SOLUTIONS LTD.
* Copyright (C) 2019-2021 TON Labs. All Rights Reserved.
*
* Licensed under the SOFTWARE EVALUATION License (the "License"); you may not use
* this file except in compliance with the License.
Expand Down
1 change: 1 addition & 0 deletions commit_hash.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0fba14f552e67b9144404503612dc159b49d7e6b
1 change: 1 addition & 0 deletions deps_map.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ton-block":"447a265d0013336b3c506cad45558922aa67f9f6","ton-types":"164867fa842b1efd0eeb378e727a17677ae8a322"}
2 changes: 1 addition & 1 deletion src/deserialize.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2019 TON DEV SOLUTIONS LTD.
* Copyright (C) 2019-2021 TON Labs. All Rights Reserved.
*
* 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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2019 TON DEV SOLUTIONS LTD.
* Copyright (C) 2019-2021 TON Labs. All Rights Reserved.
*
* 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
Expand Down
2 changes: 1 addition & 1 deletion src/serialize.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2019 TON DEV SOLUTIONS LTD.
* Copyright (C) 2019-2021 TON Labs. All Rights Reserved.
*
* 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
Expand Down

0 comments on commit 75af081

Please sign in to comment.