diff --git a/Cargo.lock b/Cargo.lock index 0be80a7..ab141d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1206,7 +1206,7 @@ dependencies = [ [[package]] name = "novax" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-trait", "hex", @@ -1228,7 +1228,7 @@ dependencies = [ [[package]] name = "novax-abi-build" -version = "0.1.4" +version = "0.1.5" dependencies = [ "convert_case", "prettyplease", @@ -1242,7 +1242,7 @@ dependencies = [ [[package]] name = "novax-caching" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-trait", "novax", @@ -1254,7 +1254,7 @@ dependencies = [ [[package]] name = "novax-data" -version = "0.1.4" +version = "0.1.5" dependencies = [ "base64", "multiversx-sc", @@ -1267,7 +1267,7 @@ dependencies = [ [[package]] name = "novax-executor" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-trait", "base64", @@ -1286,7 +1286,7 @@ dependencies = [ [[package]] name = "novax-mocking" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-trait", "base64", @@ -1307,7 +1307,7 @@ dependencies = [ [[package]] name = "novax-request" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-trait", "reqwest", @@ -1316,7 +1316,7 @@ dependencies = [ [[package]] name = "novax-token" -version = "0.1.4" +version = "0.1.5" dependencies = [ "async-trait", "base64", diff --git a/abi-build/Cargo.toml b/abi-build/Cargo.toml index cb1f581..af2f031 100644 --- a/abi-build/Cargo.toml +++ b/abi-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-abi-build" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "A build-dependency crate for 'nova' which hosts macros and utilities for generating client code based on smart contract ABIs. It facilitates the automated creation of interfaces, types, and implementations for interacting with blockchain contracts." license = "GPL-3.0-only" diff --git a/caching/Cargo.toml b/caching/Cargo.toml index 9d47ebf..c0b5847 100644 --- a/caching/Cargo.toml +++ b/caching/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-caching" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "GPL-3.0-only" description = "An auxiliary crate within the NovaX framework that provides caching functionalities to optimize and enhance the performance of blockchain interactions." @@ -13,7 +13,7 @@ serde = "1.0.180" rmp-serde = "1.1.2" tokio = "1.29.1" async-trait = "0.1.72" -novax = { path = "../core", version = "0.1.4" } +novax = { path = "../core", version = "0.1.5" } [dev-dependencies] thread_local = "1.1.7" diff --git a/core/Cargo.toml b/core/Cargo.toml index 253464f..f9eac36 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "GPL-3.0-only" readme = "README.md" @@ -15,8 +15,8 @@ ci = ["novax-abi-build/no-fmt-output"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -novax-data = { path = "../data", version = "0.1.4" } -novax-executor = { path = "../executor", version = "0.1.4" } +novax-data = { path = "../data", version = "0.1.5" } +novax-executor = { path = "../executor", version = "0.1.5" } num-bigint = { version = "0.4.3", features = ["serde"] } async-trait = "0.1.72" serde = "1.0.177" @@ -32,4 +32,4 @@ reqwest = "0.11.18" hex = "0.4.3" [build-dependencies] -novax-abi-build = { path = "../abi-build", version = "0.1.4" } +novax-abi-build = { path = "../abi-build", version = "0.1.5" } diff --git a/data/Cargo.toml b/data/Cargo.toml index bccfce3..9242554 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-data" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "GPL-3.0-only" description = "A foundational crate for the NovaX framework, providing essential data types and conversions necessary for working with smart contracts and blockchain interactions." diff --git a/executor/Cargo.toml b/executor/Cargo.toml index 5a122cc..30fbf6c 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-executor" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "GPL-3.0-only" description = "Part of the NovaX framework, this crate facilitates the execution of transactions and queries against smart contracts on the blockchain." @@ -16,8 +16,8 @@ serde = "1.0.183" serde_json = "1.0.108" hex = "0.4.3" base64 = "0.21.3" -novax-data = { path = "../data", version = "0.1.4" } -novax-request = { path = "../request", version = "0.1.4" } +novax-data = { path = "../data", version = "0.1.5" } +novax-request = { path = "../request", version = "0.1.5" } multiversx-sc = "=0.47.5" multiversx-sc-scenario = "=0.47.5" multiversx-sdk = "=0.3.2" diff --git a/mocking/Cargo.toml b/mocking/Cargo.toml index 27b43bb..70e327f 100644 --- a/mocking/Cargo.toml +++ b/mocking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-mocking" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "GPL-3.0-only" description = "The `novax-mocking` crate is a part of the Nova framework, providing utilities to simulate blockchain environments. It facilitates the creation of a `MockExecutor` and other simulated entities, enabling easy testing and development against smart contract interactions within a controlled, replicated blockchain scenario." @@ -12,9 +12,9 @@ repository = "https://github.com/gfusee/novax" num-bigint = "0.4.3" async-trait = "0.1.72" tokio = "1.30.0" -novax = { path = "../core", version = "0.1.4" } -novax-token = { path = "../token", version = "0.1.4" } -novax-executor = { path = "../executor", version = "0.1.4" } +novax = { path = "../core", version = "0.1.5" } +novax-token = { path = "../token", version = "0.1.5" } +novax-executor = { path = "../executor", version = "0.1.5" } multiversx-sc = "=0.47.5" multiversx-sc-snippets = "=0.47.5" multiversx-sdk = "=0.3.2" diff --git a/request/Cargo.toml b/request/Cargo.toml index 64f44a6..8916f01 100644 --- a/request/Cargo.toml +++ b/request/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-request" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "GPL-3.0-only" description = "The `novax-request` crate serves as an abstraction layer for request clients, enabling mocking or actual interactions with blockchain gateway APIs. Its primary utility is within other Nova crates like `novax-token`, providing a standardized interface for handling requests, thereby promoting ease of testing and consistency across different blockchain interaction scenarios." diff --git a/token/Cargo.toml b/token/Cargo.toml index 771797d..03ac492 100644 --- a/token/Cargo.toml +++ b/token/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "novax-token" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "GPL-3.0-only" description = "The `novax-token` crate offers utilities for retrieving token information from the blockchain, such as querying address balances, token metadata, and other related operations. By encapsulating the logic for interacting with token-related blockchain features, `novax-token` simplifies the process of querying and managing tokens within decentralized applications, making it a valuable tool for developers working with blockchain tokens and assets." @@ -12,9 +12,9 @@ repository = "https://github.com/gfusee/novax" serde = "1.0.188" serde_json = "1.0.105" hex = "0.4.3" -novax = { path = "../core", version = "0.1.4" } -novax-data = { path = "../data", version = "0.1.4" } -novax-request = { path = "../request", version = "0.1.4" } +novax = { path = "../core", version = "0.1.5" } +novax-data = { path = "../data", version = "0.1.5" } +novax-request = { path = "../request", version = "0.1.5" } num-bigint = "0.4.4" async-trait = "0.1.73" multiversx-sc = "=0.47.5"