-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathCargo.toml
114 lines (99 loc) · 3.09 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
[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/car-1",
"car-races/car-2",
"car-races/car-3",
"car-races",
"concert",
"dex",
"dynamic-nft",
"galactic-express",
"multisig-wallet",
"nft-marketplace",
"oracle",
"oracle/randomness",
"ping-pong",
"upgrade-proxy/counter",
"upgrade-proxy/upgrade-proxy",
"rmrk",
"rmrk/catalog",
"rmrk/resource",
"rmrk/state",
"staking",
"syndote/wasm",
"syndote/player/wasm",
"tamagotchi",
"tamagotchi/state",
"tamagotchi-battle",
"tamagotchi-battle/state",
"tequila-train",
"varatube",
"tic-tac-toe",
"vara-man",
"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"
rmrk-catalog.path = "rmrk/catalog"
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"
rmrk-catalog-io.path = "rmrk/catalog/io"
rmrk-io.path = "rmrk/io"
rmrk-resource-io.path = "rmrk/resource/io"
tamagotchi-io.path = "tamagotchi/io"
tamagotchi-battle-io.path = "tamagotchi-battle/io"
tequila-train-io.path = "tequila-train/io"
# Local libraries
# Keep in the lexicographic order!
rmrk-types.path = "rmrk/types"
# Gear
gstd = "1.7.1"
gear-wasm-builder = "1.7.1"
gmeta = "1.7.1"
gclient = "1.7.1"
gtest = "1.6.1"
gear-core = "1.7.1"
sails-idl-gen = "0.7.3"
sails-rs = "0.7.3"
sails-client-gen = "0.7.3"
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"
hex-literal = "0.4"
hex = { version = "0.4", default-features = false }
schnorrkel = { version = "0.10", default-features = false, features = ["u64_backend"] }
quote = "1"
scale-info = { version = "2", default-features = false }
parity-scale-codec = { version = "3", default-features = false }