forked from gear-tech/gear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 1.14 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
36
37
38
39
40
41
[package]
name = "gear-test"
version = "0.1.0"
authors = ["Gear Technologies"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
anyhow = "1"
clap = { version = "3.2", features = ["derive"] }
derive_more = "0.99"
env_logger = "0.9"
colored = "2.0.0"
regex = "^1.6"
serde_yaml = "0.8.26"
hex = "0.4.2"
serde = { version = "*", features = ["derive"] }
serde_json = "*"
log = "0.4.17"
rayon = "1.5"
wasm-instrument = { version = "0.2.1", git = "https://github.com/gear-tech/wasm-instrument.git", branch = "gear-stable", default-features = false }
primitive-types = { version = "0.11.1", default-features = false, features = ["scale-info"] }
once_cell = "1.15.0"
# Internal deps
gear-core = { path = "../core" }
common = { package = "gear-common", path = "../common" }
core-processor = { package = "gear-core-processor", path = "../core-processor", default-features = false }
gear-backend-common = { path = "../core-backend/common" }
gear-backend-wasmi = { path = "../core-backend/wasmi" }
[dev-dependencies]
parity-scale-codec = { version = "3.1.2", features = ["derive"], default-features = false }
[[bin]]
name = "gear-test"
path = "src/main.rs"
[lib]
[features]