-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (31 loc) · 1.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "novax"
version = "0.1.6"
edition = "2021"
license = "GPL-3.0-only"
readme = "README.md"
description = "NovaX is your go-to toolkit for building robust software seamlessly interacting with the MultiversX blockchain."
repository = "https://github.com/gfusee/novax"
categories = ["cryptography::cryptocurrencies", "api-bindings"]
keywords = ["multiversx", "blockchain", "sdk", "api"]
[features]
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.6" }
novax-executor = { path = "../executor", version = "0.1.6" }
num-bigint = { version = "0.4.3", features = ["serde"] }
async-trait = "0.1.72"
serde = "1.0.177"
serde_json = "1.0.104"
tokio = "1.29.1"
multiversx-sc = { path = "../../mx-sdk-rs/framework/base" }
multiversx-sc-snippets = { path = "../../mx-sdk-rs/framework/snippets" }
multiversx-sdk = { path = "../../mx-sdk-rs/sdk/core" }
multiversx-sc-scenario = { path = "../../mx-sdk-rs/framework/scenario" }
multiversx-sc-codec = { path = "../../mx-sdk-rs/data/codec" }
multiversx-sc-codec-derive = "=0.19.0"
reqwest = "0.11.18"
hex = "0.4.3"
[build-dependencies]
novax-abi-build = { path = "../abi-build", version = "0.1.6" }