Skip to content

Commit 7591ed4

Browse files
committed
Automatic project update
1 parent fba9f09 commit 7591ed4

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = '2018'
33
name = 'ton_node'
4-
version = '0.49.3'
4+
version = '0.49.4'
55

66

77
[workspace]
@@ -42,7 +42,7 @@ sha2 = '0.9'
4242
spin = '0.7.1'
4343
stream-cancel = '0.8.0'
4444
string-builder = '^0.2.0'
45-
adnl = { features = [ 'client', 'node', 'server' ], git = 'https://github.com/tonlabs/ton-labs-adnl', tag = '0.7.65' }
45+
adnl = { features = [ 'client', 'node', 'server' ], git = 'https://github.com/tonlabs/ton-labs-adnl', tag = '0.7.66' }
4646
catchain = { path = 'catchain' }
4747
dht = { git = 'https://github.com/tonlabs/ton-labs-dht', tag = '0.5.61' }
4848
lockfree = { git = 'https://github.com/tonlabs/lockfree.git' }

catchain/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ regex = '1.3.1'
2222
sha2 = '0.9'
2323
tokio = { features = [ 'rt-multi-thread' ], version = '1.5' }
2424

25-
adnl = { features = [ 'node' ], git = 'https://github.com/tonlabs/ton-labs-adnl', tag = '0.7.65' }
25+
adnl = { features = [ 'node' ], git = 'https://github.com/tonlabs/ton-labs-adnl', tag = '0.7.66' }
2626
overlay = { git = 'https://github.com/tonlabs/ton-labs-overlay', tag = '0.6.49' }
2727
rldp = { git = 'https://github.com/tonlabs/ton-labs-rldp', tag = '0.7.60' }
2828
storage = { path = '../storage' }

commit_hash.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6858ef52a4eda587f6d707b815fa48c88c8ba556
1+
1efe43f7be0c4916fb86a24fc8a4d64ac3e0d842

deps_map.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"adnl":"151ce6a983c2dda50be00258d8eb2b8612b0fda9","dht":"f3a321ed703200d2e3a1b7bbfe8d52af22e9b26b","overlay":"63902b5e1b8157ccfbe10c81c3e2ecbbbcbf6774","rldp":"0d576242914c417be6154c6996eac972bc082e21","ton-labs-abi":"ec48e6f90fc0ad6b73ce5c2501807a94b38c056a","ton-tl":"f36ed7353e15dbc472170b28c9a63fca6a64f3a1","ton-block":"4a3bf9a65e3bb578ad5833003d6c8978888199e3","ton-block-json":"e09628f01f93569fad7e5c7125cd9af1d0a5a1c9","ton-executor":"d716818545b287e04dfad21ddc317a5ea389e621","ton-types":"007da5416f1508fdd5fd23be8099a5e0f06f564e","ton-vm":"214b50588c50fdbd3939b87ba87d77a0b3c43777"}
1+
{"adnl":"56dfefa71a4d1f62aa3d5edd9748bcae4ecb4162","dht":"f0dd7c3723962880bea7225de7f1727713386d42","overlay":"ae651875e43cbe840fc974eb78b4e2619106f1c6","rldp":"dba5fedd7d1a652c35918fd0eb0b6ddc30d4576f","ton-labs-abi":"ec48e6f90fc0ad6b73ce5c2501807a94b38c056a","ton-tl":"f36ed7353e15dbc472170b28c9a63fca6a64f3a1","ton-block":"4a3bf9a65e3bb578ad5833003d6c8978888199e3","ton-block-json":"e09628f01f93569fad7e5c7125cd9af1d0a5a1c9","ton-executor":"d716818545b287e04dfad21ddc317a5ea389e621","ton-types":"007da5416f1508fdd5fd23be8099a5e0f06f564e","ton-vm":"214b50588c50fdbd3939b87ba87d77a0b3c43777"}

src/validating_utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub fn supported_capabilities() -> u64 {
2828
}
2929

3030
pub fn supported_version() -> u32 {
31-
19
31+
20
3232
}
3333

3434
pub fn check_this_shard_mc_info(

storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ strum = '0.18.0'
2323
strum_macros = '0.18.0'
2424
tokio = { features = [ 'fs', 'rt-multi-thread' ], version = '1.5' }
2525

26-
adnl = { git = 'https://github.com/tonlabs/ton-labs-adnl', tag = '0.7.65' }
26+
adnl = { git = 'https://github.com/tonlabs/ton-labs-adnl', tag = '0.7.66' }
2727
lockfree = { git = 'https://github.com/tonlabs/lockfree.git' }
2828
ton_api = { git = 'https://github.com/tonlabs/ton-labs-tl', package = 'ton_api', tag = '0.2.120' }
2929
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.37' }

validator-session/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = '0.0.1'
66

77
[dependencies]
88
# domestic
9-
adnl = { features = [ 'node' ], git = 'https://github.com/tonlabs/ton-labs-adnl', tag = '0.7.65' }
9+
adnl = { features = [ 'node' ], git = 'https://github.com/tonlabs/ton-labs-adnl', tag = '0.7.66' }
1010
catchain = { path = '../catchain' }
1111
storage = { path = '../storage' }
1212
ton_api = { git = 'https://github.com/tonlabs/ton-labs-tl', package = 'ton_api', tag = '0.2.120' }

0 commit comments

Comments
 (0)