-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (53 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
55 lines (53 loc) · 1.36 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
[workspace]
resolver = "2"
members = [
#"*/app",
#"*/wasm",
#"*/client",
"lib",
"ping",
"hello-world",
"counter",
"counter-with-event",
"counter-with-event-caller",
"lucky-draw",
"ss58",
"mixin",
"pausable-ownable-counter",
"vft",
]
exclude = [
"gear-erc20/app",
"gear-erc20/wasm",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "GPL-3.0"
[workspace.dependencies]
gstd = "1.9.1"
gtest = "1.9.1"
gclient = "1.9.1"
gear-core = "1.9.1"
gear-wasm-builder = "1.9.1"
sails-idl-gen = "0.9.0"
sails-client-gen = "0.9.0"
sails-rs = "0.9.0"
# sails-idl-gen = { git = "https://github.com/gear-tech/sails" }
# sails-client-gen = { git = "https://github.com/gear-tech/sails" }
# sails-rs = { git = "https://github.com/gear-tech/sails" }
parity-scale-codec = { version = "3.6", default-features = false }
scale-info = { version = "2.10", default-features = false }
primitive-types = { version = "*", default-features = false }
derive-more = { version = "*", default-features = false, features = ["display"] }
log = "*"
env_logger = "*"
serde = "1.0"
serde-json = { package = "serde_json", version = "1.0" }
syn = "2.0"
thiserror = "1.0"
tokio = "1.36"
trybuild = "1"
# vft-service = { git = "https://github.com/varazone/standards" }
vft-service = { git = "https://github.com/gear-foundation/standards" }
mockall = "0.12"