Skip to content

Commit

Permalink
Merge pull request #565 from tonlabs/fix-ssl-import
Browse files Browse the repository at this point in the history
Fix ssl import
  • Loading branch information
AlexeyVavilin authored Nov 13, 2023
2 parents 45d6ca1 + fe3a057 commit 58e46f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/lib-node/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ]

[dependencies]
libc = '0.2'
ton_client = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.45.0' }
ton_client = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.45.0', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }

[profile.release]
lto = true
3 changes: 1 addition & 2 deletions packages/lib-react-native/android/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +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/ever-sdk.git', tag = '1.45.0' }
openssl = { features = [ 'vendored' ], version = '0.10' }
ton_client = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.45.0', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }

[profile.release]
lto = true
2 changes: 1 addition & 1 deletion packages/lib-react-native/ios/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ]

[dependencies]
libc = '0.2'
ton_client = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.45.0' }
ton_client = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.45.0', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }

[profile.release]
lto = true

0 comments on commit 58e46f1

Please sign in to comment.