Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upstream 0.20.0 #107

Merged
merged 10 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
* Ni: add-get-account-state-by-transaction
* Impl #be-1317: serialize_dict
* Impl #be-1412: partialeq for invalidmesage
### v0.20.0
* Impl #be-1604: update_recent_init_block on tonlib client init
* Impl #be-1441: improve dict load/store
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resolver = "2"


[workspace.package]
version = "0.19.3"
version = "0.20.0"
edition = "2021"
description = "Rust SDK for The Open Network"
license = "MIT"
Expand Down Expand Up @@ -48,10 +48,9 @@ thiserror = "1"
tokio = { version = "1", features = ["rt","macros"] }
tokio-retry = "0.3"
tokio-test = "0.4"
ton_liteapi = { git = "https://github.com/ston-fi/lite-client", branch = "async", version = "0.1.0" }
ton_liteapi = "0.1.0"
adnl = "2.0"
tonlib-sys = "=2024.9.0"
bitvec = "1.0"
tokio-tower = "0.6.0"
tower = "0.5.1"

Expand Down
3 changes: 2 additions & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ state_cache = []
emulate_get_method = []
no_avx512 = ["tonlib-sys/no_avx512"]
with_debug_info = ["tonlib-sys/with_debug_info"]
liteapi = ["dep:ton_liteapi"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -33,7 +34,7 @@ dashmap.workspace = true
futures.workspace = true
hex.workspace = true

ton_liteapi.workspace = true
ton_liteapi = {workspace = true, optional = true }
adnl.workspace = true
tokio-tower.workspace = true
tower = {workspace = true, features = ["util"] }
Expand Down
Loading
Loading