-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
42 lines (36 loc) · 915 Bytes
/
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
42
[workspace.package]
homepage = "https://wiki.gear-tech.io/docs/examples/prerequisites"
authors = ["Gear Foundation <[email protected]>"]
version = "0.1.0"
license = "MIT"
edition = "2021"
publish = false
[package]
name = "template"
version.workspace = true
edition.workspace = true
publish.workspace = true
[dependencies]
gstd.workspace = true
template-io.workspace = true
[build-dependencies]
gear-wasm-builder.workspace = true
template-io.workspace = true
[dev-dependencies]
gtest.workspace = true
gclient.workspace = true
tokio.workspace = true
# It's necessary to include all metawasm crates in the workspace section, otherwise they'll be
# ignored by Cargo and won't be built.
[workspace]
members = ["state", "xtask"]
[workspace.dependencies]
gstd = "1.3.0"
gmeta = "1.3.0"
gear-wasm-builder = "1.3.0"
gtest = "1.3.0"
gclient = "1.3.0"
template-io.path = "io"
tokio = "1"
xshell = "0.2"
anyhow = "1"