diff --git a/Cargo.toml b/Cargo.toml index e4295c37..012f996d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tonlib" -version = "0.14.0" +version = "0.14.1" edition = "2021" description = "Rust SDK for The Open Network" license = "MIT" @@ -45,8 +45,7 @@ reqwest = "0.11" thiserror = "1" tokio = { version = "1", features = ["rt","macros"] } tokio-retry = "0.3" -tonlib-sys ="=2024.3.2" # Current 0.14 + sys - +tonlib-sys = "=2024.3.3" [dev-dependencies] anyhow = "1" diff --git a/README.md b/README.md index 6120eb0e..b075c5a5 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ To use this library in your Rust application, add the following to your Cargo.to ```toml [dependencies] -tonlib = "0.13" +tonlib = "0.14" ``` Then, in your Rust code, you can import the library with: @@ -419,6 +419,9 @@ async fn create_simple_transfer() -> anyhow::Result<()> { } ``` +## Cross-compilation +In order to cross-compile for specific cpu microachitecture set environment variable `TARGET_CPU_MARCH` to the required. Supported values are listen in https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html + ## Contributing If you want to contribute to this library, please feel free to open a pull request on GitHub.