-
Notifications
You must be signed in to change notification settings - Fork 108
/
Cargo.toml
133 lines (121 loc) · 3.98 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[workspace]
resolver = "2"
# Keep in the lexicographic order!
# Remove a member if it's used as a dependency in the workspace.
members = [
"battle",
"battle/warrior/wasm",
"battleship",
"car-races/app",
"car-races/car-1",
"car-races/car-2",
"car-races/car-3",
"car-races/wasm",
"concert/wasm",
"dynamic-nft",
"galactic-express/wasm",
"multisig-wallet",
"oracle",
"oracle/state",
"oracle/randomness",
"oracle/randomness/state",
"ping-pong",
"rmrk",
"rmrk/catalog",
"rmrk/resource",
"rmrk/state",
"syndote/wasm",
"syndote/player/wasm",
"tamagotchi",
"tamagotchi/state",
"tamagotchi-battle",
"tamagotchi-battle/state",
"tequila-train",
"varatube/wasm",
"tic-tac-toe/wasm",
"vara-man/wasm",
"w3bstreaming",
"zk-battleship/wasm",
]
[workspace.package]
homepage = "https://wiki.gear-tech.io/docs/examples/prerequisites"
documentation = "https://dapps.gear.rs"
authors = ["Gear Foundation <[email protected]>"]
version = "1.1.0"
license = "MIT"
edition = "2021"
publish = false
[workspace.dependencies]
# Local contracts
# Keep in the lexicographic order!
battleship-bot.path = "battleship/bot"
oracle.path = "oracle"
oracle-randomness.path = "oracle/randomness"
rmrk-catalog.path = "rmrk/catalog"
syndote-player.path = "syndote/player"
tamagotchi.path = "tamagotchi"
# Local states
# Keep in the lexicographic order!
rmrk-state.path = "rmrk/state"
tamagotchi-battle-state.path = "tamagotchi-battle/state"
# Local IO-crates
# Keep in the lexicographic order!
battleship-io.path = "battleship/io"
car-races-io.path = "car-races/io"
multi-token-io.path = "multi-token/io"
rmrk-catalog-io.path = "rmrk/catalog/io"
rmrk-io.path = "rmrk/io"
rmrk-resource-io.path = "rmrk/resource/io"
rock-paper-scissors-io.path = "rock-paper-scissors/io"
oracle-io.path = "oracle/io"
oracle-randomness-io.path = "oracle/randomness/io"
syndote-io.path = "syndote/io"
syndote-player-io.path = "syndote/player/io"
tamagotchi-io.path = "tamagotchi/io"
tamagotchi-battle-io.path = "tamagotchi-battle/io"
tequila-train-io.path = "tequila-train/io"
w3bstreaming-io.path = "w3bstreaming/io"
# Local libraries
# Keep in the lexicographic order!
rmrk-types.path = "rmrk/types"
# Gear
gstd = "1.7.0"
gear-wasm-builder = "1.7.0"
gmeta = "1.7.0"
gclient = "1.7.0"
gtest = "1.6.1"
gear-core = "1.7.0"
sails-idl-gen = "0.7.0"
sails-rs = "0.7.0"
sails-client-gen = "0.7.0"
session-service = { git = "https://github.com/gear-foundation/signless-gasless-session-service.git" }
extended-vft-client = { git = "https://github.com/gear-foundation/standards/"}
extended-vnft-client = { git = "https://github.com/gear-foundation/standards/"}
extended-vmt-client = { git = "https://github.com/gear-foundation/standards/"}
extended-vmt = { git = "https://github.com/gear-foundation/standards/"}
extended-vft = { git = "https://github.com/gear-foundation/standards/"}
extended-vnft = { git = "https://github.com/gear-foundation/standards/"}
# External
primitive-types = { version = "0.12", default-features = false }
sp-core = { version = "21.0.0", default-features = false, features = ["full_crypto", "sp-externalities"] }
sp-core-hashing = { version = "10", default-features = false }
tokio = "1"
blake2-rfc = "0.2"
hex-literal = "0.4"
hex = { version = "0.4", default-features = false }
async-trait = "0.1"
rand = { version = "0.8", default-features = false }
rand_xoshiro = "0.6"
indexmap = { version = "2", default-features = false }
ahash = { version = "0.8", default-features = false, features = ["no-rng"] }
schnorrkel = { version = "0.10", default-features = false, features = ["u64_backend"] }
syn = { version = "2", default-features = false }
quote = "1"
clap = { version = "4", default-features = false, features = ["std"] }
enum-iterator = "1"
xshell = "0.2"
anyhow = "1"
sha2 = "0.10"
num-traits = { version = "0.2", default-features = false }
scale-info = { version = "2", default-features = false }
parity-scale-codec = { version = "3", default-features = false }