-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
86 lines (82 loc) · 2.4 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
[workspace.package]
version = "0.7.1"
authors = ["Gear Technologies"]
edition = "2021"
license = "GPL-3.0"
repository = "https://github.com/gear-tech/sails"
[workspace]
resolver = "2"
members = [
"examples/demo/app",
"examples/demo/client",
"examples/demo/walker",
"examples/no-svcs-prog/app",
"examples/no-svcs-prog/wasm",
"examples/proxy/",
"examples/rmrk/catalog/app",
"examples/rmrk/catalog/wasm",
"examples/rmrk/resource/app",
"examples/rmrk/resource/wasm",
"rs",
"rs/cli",
"rs/client-gen",
"rs/idl-gen",
"rs/idl-meta",
"rs/idl-parser",
"rs/macros",
"rs/macros/core",
]
[workspace.dependencies]
# The order matches with publishing order.
sails-idl-meta = { path = "rs/idl-meta" }
sails-idl-parser = { path = "rs/idl-parser" }
sails-idl-gen = { path = "rs/idl-gen" }
sails-client-gen = { path = "rs/client-gen" }
sails-macros-core = { path = "rs/macros/core" }
sails-macros = { path = "rs/macros" }
sails-rs = { path = "rs" }
# Renamed sails-rs for `proxy` demo
sails-rename = { package = "sails-rs", path = "rs" }
# Gear deps
gclient = "=1.7.0"
gear-core = { version = "=1.7.0", default-features = false }
gear-core-errors = "=1.7.0"
gprimitives = { version = "=1.7.0", features = ["codec"] }
gstd = "=1.7.0"
gtest = "=1.7.0"
gwasm-builder = { version = "=1.7.0", package = "gear-wasm-builder" }
# Other deps in alphabetical order
anyhow = "1"
cargo-generate = "0.21"
cargo_metadata = "0.18"
clap = "4.5"
convert-case = { package = "convert_case", version = "0.6" }
futures = { version = "0.3", default-features = false }
genco = "0.17"
git-download = "0.1"
handlebars = "4.4"
hashbrown = "0.15"
hex = { version = "0.4", default-features = false }
insta = "1.42"
itertools = "0.13"
lalrpop = { version = "0.20", default-features = false }
lalrpop-util = "0.20"
log = { version = "0.4", default-features = false }
logos = "0.13"
mockall = "0.12"
parity-scale-codec = { version = "=3.6.12", default-features = false }
prettyplease = "0.2"
proc-macro-error = "1.0"
proc-macro2 = { version = "1", default-features = false }
rustdoc-types = "=0.31.0"
quote = "1.0"
scale-info = { version = "2.11", default-features = false }
serde = "1.0"
serde-json = { package = "serde_json", version = "1.0" }
spin = { version = "0.9", default-features = false, features = ["spin_mutex"] }
syn = "2.0"
thiserror = "2.0"
thiserror-no-std = "2.0"
toml_edit = "0.22"
tokio = "1.43"
trybuild = "1"