-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
73 lines (62 loc) · 2.06 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
[workspace.package]
authors = ["Acala Developers <[email protected]>"]
edition = "2021"
repository = "https://github.com/open-web3-stack/XCQ"
license = "Apache-2.0"
version = "0.1.0"
[workspace]
resolver = "2"
members = [
"poc/runtime",
"xcq-api",
"xcq-executor",
"xcq-extension-core",
"xcq-extension-fungibles",
"xcq-extension",
"xcq-primitives",
"xcq-runtime-api",
"xcq-test-runner",
"xcq-types",
"examples/example-fungibles",
"examples/example-helloworld",
]
exclude = ["poc/guests", "vendor"]
[profile.release]
# runtime requires unwinding.
panic = "unwind"
opt-level = 3
[workspace.dependencies]
# local
xcq-api = { path = "xcq-api", default-features = false }
xcq-executor = { path = "xcq-executor", default-features = false }
xcq-extension-core = { path = "xcq-extension-core", default-features = false }
xcq-extension-fungibles = { path = "xcq-extension-fungibles", default-features = false }
xcq-extension = { path = "xcq-extension", default-features = false }
xcq-primitives = { path = "xcq-primitives", default-features = false }
xcq-runtime-api = { path = "xcq-runtime-api", default-features = false }
xcq-test-runner = { path = "xcq-test-runner", default-features = false }
xcq-types = { path = "xcq-types", default-features = false }
# polkavm
polkavm = { path = "vendor/polkavm/crates/polkavm", default-features = false }
# polkadot-sdk
sp-api = { version = "31.0.0", default-features = false }
# nostd
parity-scale-codec = { version = "3.6.12", default-features = false, features = [
"derive",
"max-encoded-len",
] }
scale-info = { version = "2.11.3", default-features = false, features = [
"derive",
] }
tracing = { version = "0.1.40", default-features = false }
# std
clap = { version = "4.5.4", features = ["derive"] }
env_logger = { version = "0.11.3" }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
fortuples = "0.9"
# proc macros
syn = { version = "2", features = ["full", "visit-mut", "extra-traits"] }
quote = "1"
proc-macro2 = "1"
proc-macro-crate = "3"
Inflector = { version = "0.11.4" }