forked from NoirHQ/noir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (77 loc) · 3.46 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
[workspace]
resolver = "2"
members = [
"core-primitives",
"frame/babel",
"frame/cosmos",
"frame/cosmos/types",
"frame/cosmos/rpc",
"frame/cosmos/runtime-api",
"frame/cosmos/x/auth",
"frame/cosmos/x/auth/migrations",
"frame/cosmos/x/auth/signing",
"frame/cosmos/x/bank",
"frame/cosmos/x/bank/types",
"frame/cosmos/x/wasm",
"frame/cosmos/x/wasm/types",
"frame/multimap",
"primitives/babel",
"primitives/cosmos",
"primitives/ethereum",
"primitives/nostr",
"primitives/runtime",
"primitives/solana",
"runtime/common",
"vendor/composable/composable-support",
"vendor/composable/vm",
"vendor/composable/vm-wasmi",
"vendor/cosmwasm/std",
"vendor/composable/cosmwasm",
"vendor/composable/cosmwasm/rpc",
"vendor/composable/cosmwasm/runtime-api",
"vendor/moonbeam/precompiles/assets-erc20",
"vendor/moonbeam/precompiles/balances-erc20",
]
default-members = [
"core-primitives",
"frame/*",
"primitives/*",
"runtime/*",
]
[workspace.dependencies]
composable-support = { path = "vendor/composable/composable-support", default-features = false }
cosmos-rpc = { path = "frame/cosmos/rpc", default-features = false }
cosmos-runtime-api = { path = "frame/cosmos/runtime-api", default-features = false }
cosmwasm-rpc = { path = "vendor/composable/cosmwasm/rpc" }
cosmwasm-runtime-api = { path = "vendor/composable/cosmwasm/runtime-api", default-features = false }
cosmwasm-std = { path = "vendor/cosmwasm/std", default-features = false }
cosmwasm-vm = { path = "vendor/composable/vm", default-features = false }
cosmwasm-vm-wasmi = { path = "vendor/composable/vm-wasmi", default-features = false }
frame-babel = { path = "frame/babel", default-features = false }
noir-core-primitives = { path = "core-primitives", default-features = false }
noir-runtime-common = { path = "runtime/common", default-features = false }
np-babel = { path = "primitives/babel", default-features = false }
np-cosmos = { path = "primitives/cosmos", default-features = false }
np-ethereum = { path = "primitives/ethereum", default-features = false }
np-nostr = { path = "primitives/nostr", default-features = false }
np-runtime = { path = "primitives/runtime", default-features = false }
np-solana = { path = "primitives/solana", default-features = false }
pallet-cosmos = { path = "frame/cosmos", default-features = false }
pallet-cosmos-types = { path = "frame/cosmos/types", default-features = false }
pallet-cosmos-x-auth = { path = "frame/cosmos/x/auth", default-features = false }
pallet-cosmos-x-auth-migrations = { path = "frame/cosmos/x/auth/migrations", default-features = false }
pallet-cosmos-x-auth-signing = { path = "frame/cosmos/x/auth/signing", default-features = false }
pallet-cosmos-x-bank = { path = "frame/cosmos/x/bank", default-features = false }
pallet-cosmos-x-bank-types = { path = "frame/cosmos/x/bank/types", default-features = false }
pallet-cosmos-x-wasm = { path = "frame/cosmos/x/wasm", default-features = false }
pallet-cosmos-x-wasm-types = { path = "frame/cosmos/x/wasm/types", default-features = false }
pallet-cosmwasm = { path = "vendor/composable/cosmwasm", default-features = false }
pallet-evm-precompileset-assets-erc20 = { path = "vendor/moonbeam/precompiles/assets-erc20", default-features = false }
pallet-evm-precompile-balances-erc20 = { path = "vendor/moonbeam/precompiles/balances-erc20", default-features = false }
pallet-multimap = { path = "frame/multimap", default-features = false }
[profile.release]
panic = "unwind"
[profile.production]
inherits = "release"
lto = "fat"
codegen-units = 1