From d5d33f8590a9baebb311be8f17a6bfbd666d3d77 Mon Sep 17 00:00:00 2001 From: shuimuliang Date: Mon, 23 Oct 2023 16:25:11 +0800 Subject: [PATCH] build: upgrade anychain-core deps to 0.1.3 --- anychain-bitcoin/Cargo.toml | 4 ++-- anychain-bitcoin/README.md | 2 +- anychain-ethereum/Cargo.toml | 4 ++-- anychain-ethereum/README.md | 2 +- anychain-filecoin/Cargo.toml | 4 ++-- anychain-filecoin/README.md | 2 +- anychain-ripple/Cargo.toml | 4 ++-- anychain-ripple/README.md | 2 +- anychain-tron/Cargo.toml | 4 ++-- anychain-tron/README.md | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/anychain-bitcoin/Cargo.toml b/anychain-bitcoin/Cargo.toml index 18ae649..d94c423 100644 --- a/anychain-bitcoin/Cargo.toml +++ b/anychain-bitcoin/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "anychain-bitcoin" description = "A Rust library for Bitcoin-focused cryptocurrency wallets, enabling seamless transactions on the Bitcoin blockchain" -version = "0.1.3" +version = "0.1.4" keywords = ["bitcoin", "blockchain", "cryptocurrency", "wallet", "transactions"] # Workspace inherited keys @@ -12,7 +12,7 @@ license = { workspace = true } repository = { workspace = true } [dependencies] -anychain-core = { path = "../anychain-core", version = "0.1.2"} +anychain-core = { path = "../anychain-core", version = "0.1.3"} base58 = { workspace = true } bech32 = { workspace = true } serde = { workspace = true } diff --git a/anychain-bitcoin/README.md b/anychain-bitcoin/README.md index d2b3fe9..e7f9a41 100644 --- a/anychain-bitcoin/README.md +++ b/anychain-bitcoin/README.md @@ -14,7 +14,7 @@ anychain-bitcoin is a Rust crate that provides a simple and efficient way to int To use anychain-bitcoin in your Rust project, add the following to your Cargo.toml file: ```toml [dependencies] -anychain-bitcoin = "0.1.3" +anychain-bitcoin = "0.1.4" ``` Then, import the crate in your code: diff --git a/anychain-ethereum/Cargo.toml b/anychain-ethereum/Cargo.toml index b40fb07..79f39af 100644 --- a/anychain-ethereum/Cargo.toml +++ b/anychain-ethereum/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "anychain-ethereum" description = "A Rust library for Ethereum-focused cryptocurrency wallets, enabling seamless transactions on the Ethereum blockchain" -version = "0.1.2" +version = "0.1.3" keywords = ["blockchain", "crypto", "cryptocurrency", "ethereum", "wallet"] # Workspace inherited keys @@ -12,7 +12,7 @@ license = { workspace = true } repository = { workspace = true } [dependencies] -anychain-core = { path = "../anychain-core", version = "0.1.1"} +anychain-core = { path = "../anychain-core", version = "0.1.3"} rand = { workspace = true } regex = { workspace = true } rlp = { workspace = true } diff --git a/anychain-ethereum/README.md b/anychain-ethereum/README.md index b3ddbe1..792e0c6 100644 --- a/anychain-ethereum/README.md +++ b/anychain-ethereum/README.md @@ -18,7 +18,7 @@ This is the README for the anychain-ethereum crate, a Rust library that provides To use the anychain-ethereum crate in your Rust project, add the following to your Cargo.toml file: ```toml [dependencies] -anychain-ethereum = "0.1.2" +anychain-ethereum = "0.1.3" ``` ## Usage diff --git a/anychain-filecoin/Cargo.toml b/anychain-filecoin/Cargo.toml index 8a62cda..47e8661 100644 --- a/anychain-filecoin/Cargo.toml +++ b/anychain-filecoin/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "anychain-filecoin" description = "A Rust library for Filecoin-focused cryptocurrency wallets, enabling seamless transactions on the Filecoin blockchain" -version = "0.1.2" +version = "0.1.3" keywords = ["filecoin", "blockchain", "cryptocurrency", "wallet", "transactions"] # Workspace inherited keys @@ -14,7 +14,7 @@ repository = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anychain-core = { path = "../anychain-core", version = "0.1.1" } +anychain-core = { path = "../anychain-core", version = "0.1.3" } serde = { workspace = true } rand = { workspace = true } serde_json = { workspace = true } diff --git a/anychain-filecoin/README.md b/anychain-filecoin/README.md index 5b0fd5e..b0c08fb 100644 --- a/anychain-filecoin/README.md +++ b/anychain-filecoin/README.md @@ -17,7 +17,7 @@ anychain-filecoin is a Rust library that provides a simple and unified interface Add the following to your Cargo.toml file: ```toml [dependencies] -anychain-filecoin = "0.1.2" +anychain-filecoin = "0.1.3" ``` Then run cargo build to download and compile the library. diff --git a/anychain-ripple/Cargo.toml b/anychain-ripple/Cargo.toml index a6021ff..19e6e2a 100644 --- a/anychain-ripple/Cargo.toml +++ b/anychain-ripple/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "anychain-ripple" description = "A Rust library for interacting with the Ripple blockchain. It provides core functionalities such as transaction signing and serialization, address generation, and network communication." -version = "0.1.4" +version = "0.1.5" keywords = ["ripple", "blockchain", "cryptocurrency", "wallet", "transactions"] # Workspace inherited keys @@ -14,6 +14,6 @@ repository = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anychain-core = { path = "../anychain-core", version = "0.1.2"} +anychain-core = { path = "../anychain-core", version = "0.1.3"} base58 = { workspace = true } sha2 = { workspace = true } diff --git a/anychain-ripple/README.md b/anychain-ripple/README.md index 405babe..f91c717 100644 --- a/anychain-ripple/README.md +++ b/anychain-ripple/README.md @@ -15,7 +15,7 @@ Features Add the following to your Cargo.toml file: ```toml [dependencies] -anychain-ripple = "0.1.4" +anychain-ripple = "0.1.5" ``` Then run cargo build to download and compile the anychain-ripple library. diff --git a/anychain-tron/Cargo.toml b/anychain-tron/Cargo.toml index f2c873d..74326c8 100644 --- a/anychain-tron/Cargo.toml +++ b/anychain-tron/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "anychain-tron" description = "A Rust library for Tron-focused cryptocurrency wallets, enabling seamless transactions on the Tron blockchain" -version = "0.2.1" +version = "0.2.2" keywords = ["tron", "blockchain", "cryptocurrency", "wallet", "transactions"] # Workspace inherited keys @@ -14,7 +14,7 @@ repository = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anychain-core = { path = "../anychain-core", version = "0.1.2" } +anychain-core = { path = "../anychain-core", version = "0.1.3" } serde = { workspace = true } sha3 = { workspace = true } sha2 = { workspace = true } diff --git a/anychain-tron/README.md b/anychain-tron/README.md index 48fbffd..2368f86 100644 --- a/anychain-tron/README.md +++ b/anychain-tron/README.md @@ -16,7 +16,7 @@ anychain-tron is a Rust library that provides a simple and unified interface for Add the following to your Cargo.toml file: ```toml [dependencies] -anychain-tron = "0.2.1" +anychain-tron = "0.2.2" ``` Then, run cargo build to download and compile the library.