-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (76 loc) · 4.08 KB
/
Cargo.toml
File metadata and controls
81 lines (76 loc) · 4.08 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
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
[package]
name = "ink_runtime"
version = "6.0.0-beta.1"
authors = ["Use Ink <ink@use.ink>", "Cardinal Cryptography"]
edition.workspace = true
license.workspace = true
description = "Runtime environment for ink! e2e tests"
repository.workspace = true
documentation = "https://docs.rs/ink_runtime"
homepage.workspace = true
[dependencies]
sha3 = "0.10.8"
frame-metadata = { workspace = true }
frame-system = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
frame-support = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-assets = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-assets-precompiles = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-balances = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-nfts = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-xcm = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-xcm-precompiles = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-transaction-payment = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-revive = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
pallet-timestamp = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
scale = { workspace = true }
sp-core = { workspace = true, default-features = false }
sp-externalities = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
sp-runtime = { version = "43.0.0", default-features = false }
sp-io = { git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
xcm = { package = "staging-xcm", git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
xcm-builder = { package = "staging-xcm-builder", git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/use-ink/polkadot-sdk.git", rev = "cbab8ed4be1941420dd25dc81102fb79d8e2a7f0", default-features = false }
ink_primitives = { workspace = true }
ink_revive_types = { workspace = true }
ink = { path = "../ink" }
ink_env = { workspace = true, default-features = true }
ink_e2e = { path = "../e2e" }
ink_e2e_macro = { workspace = true, default-features = true }
jsonrpsee = { workspace = true, features = ["ws-client"] }
thiserror = { workspace = true }
paste = { workspace = true }
scale-info = { workspace = true }
subxt-metadata = { workspace = true }
[features]
default = [
# This is required for the runtime-interface to work properly in the std env.
"std",
]
std = [
"frame-support/std",
"frame-system/std",
"frame-metadata/std",
"ink_primitives/std",
"ink_revive_types/std",
"pallet-assets/std",
"pallet-assets-precompiles/std",
"pallet-balances/std",
"pallet-transaction-payment/std",
"pallet-revive/std",
"pallet-timestamp/std",
"pallet-nfts/std",
"pallet-xcm/std",
"pallet-xcm-precompiles/std",
"scale/std",
"scale-info/std",
"sp-core/std",
"sp-externalities/std",
"sp-io/std",
"ink_e2e_macro/std",
"sp-runtime/std",
"xcm/std",
"xcm-builder/std",
"xcm-executor/std",
]
# Enable XCM + pallet-nfts in the test runtime.
xcm = []