-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (61 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
70 lines (61 loc) · 1.91 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "multiversx-sc-meta"
version = "0.65.1"
edition = "2024"
authors = [
"Andrei Marinica <andrei.marinica@multiversx.com>",
"MultiversX <contact@multiversx.com>",
]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/multiversx/mx-sdk-rs"
homepage = "https://multiversx.com/"
documentation = "https://docs.multiversx.com/"
description = "MultiversX smart contract crate management standalone tool"
keywords = ["multiversx", "blockchain", "contract", "debug"]
categories = ["cryptography::cryptocurrencies", "development-tools::debugging"]
[[bin]]
name = "sc-meta"
path = "src/main.rs"
[features]
template-test-current = []
template-test-released = []
[dependencies]
clap = { version = "4.4", features = ["derive"] }
tokio = { version = "1.24", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = { version = "1.0", features = ["preserve_order"] }
colored = "3.0"
convert_case = "0.11"
semver = "1.0.20"
ruplacer = { version = "0.10", default-features = false }
regex = "1.11"
reqwest = { version = "0.13", features = ["rustls", "blocking", "json"] }
copy_dir = "0.1.2"
pathdiff = "0.2.1"
common-path = "1.0.0"
bip39 = { version = "2.0", features = ["rand"] }
anyhow = "1.0"
hex = "0.4.3"
base64 = "0.22"
indexmap = { version = "2", features = ["serde"] }
# warning: newer versions require Rust 1.88, hence we are not upgrading yet
zip = { version = "7.2", features = ["deflate"], default-features = false }
[dependencies.multiversx-sc-meta-lib]
version = "=0.65.1"
path = "../meta-lib"
[dependencies.multiversx-sc]
version = "=0.65.1"
path = "../base"
features = ["alloc", "num-bigint"]
[dependencies.multiversx-sc-snippets]
version = "=0.65.1"
path = "../snippets"
[dependencies.multiversx-sc-scenario]
version = "=0.65.1"
path = "../scenario"
[dependencies.multiversx-sdk]
version = "=0.15.1"
path = "../../sdk/core"
features = ["wallet-full"]