diff --git a/packages/lib-node/lib/Cargo.toml b/packages/lib-node/lib/Cargo.toml index 285c0c38..5f93bdea 100644 --- a/packages/lib-node/lib/Cargo.toml +++ b/packages/lib-node/lib/Cargo.toml @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ] [dependencies] libc = '0.2' -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.29.0' } +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.30.0' } [profile.release] lto = true diff --git a/packages/lib-react-native/android/lib/Cargo.toml b/packages/lib-react-native/android/lib/Cargo.toml index 57f6bb1c..2581afa8 100644 --- a/packages/lib-react-native/android/lib/Cargo.toml +++ b/packages/lib-react-native/android/lib/Cargo.toml @@ -11,7 +11,7 @@ crate-type = [ 'cdylib' ] [dependencies] lazy_static = '1.4.0' jni = { default-features = false, version = '0.12.0' } -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.29.0' } +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.30.0' } openssl = { features = [ 'vendored' ], version = '0.10' } [profile.release] diff --git a/packages/lib-react-native/ios/lib/Cargo.toml b/packages/lib-react-native/ios/lib/Cargo.toml index 5d7d4d32..c2b018d0 100644 --- a/packages/lib-react-native/ios/lib/Cargo.toml +++ b/packages/lib-react-native/ios/lib/Cargo.toml @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ] [dependencies] libc = '0.2' -ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.29.0' } +ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.30.0' } [profile.release] lto = true diff --git a/packages/lib-web/lib/Cargo.toml b/packages/lib-web/lib/Cargo.toml index e28732ad..9d4af36c 100644 --- a/packages/lib-web/lib/Cargo.toml +++ b/packages/lib-web/lib/Cargo.toml @@ -28,7 +28,7 @@ lazy_static = '1.4.0' # just to fix building of rand for WASM: getrandom = { default-features = false, features = [ 'js' ], version = '0.2.2' } -ton_client = { default-features = false, features = [ 'wasm' ], git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.29.0' } +ton_client = { default-features = false, features = [ 'wasm' ], git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.30.0' } #ton_client = { path = "../../../../TON-SDK/ton_client/client", default-features = false, features = ["wasm"] } [dependencies.web-sys]