forked from near/nearcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (65 loc) · 1.93 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
[workspace]
resolver = "2"
members = [
"core/chain-configs",
"core/crypto",
"core/account-id",
"core/primitives",
"core/primitives-core",
"core/store",
"core/metrics",
"runtime/near-vm-logic",
"runtime/near-vm-runner",
"runtime/near-vm-runner-standalone",
"runtime/runtime",
"runtime/runtime-params-estimator",
"chain/chain",
"chain/chunks",
"chain/epoch_manager",
"chain/pool",
"chain/client",
"chain/client-primitives",
"chain/network",
"chain/indexer",
"chain/jsonrpc",
"chain/jsonrpc/client",
"chain/jsonrpc/test-utils",
"chain/jsonrpc-primitives",
"chain/rosetta-rpc",
"test-utils/actix-test-utils",
"test-utils/loadtester",
"test-utils/runtime-tester",
"test-utils/state-viewer",
"test-utils/store-validator",
"test-utils/testlib",
"neard",
"nearcore",
"tools/rpctypegen/core",
"tools/rpctypegen/macro",
"genesis-tools/genesis-csv-to-json",
"genesis-tools/genesis-populate",
"genesis-tools/keypair-generator",
"tools/restaked",
"tools/indexer/example",
"tools/delay_detector",
"tools/storage-usage-delta-calculator",
"tools/restored-receipts-verifier",
"integration-tests",
]
[patch.crates-io]
# Temporary wasmer fork which disables rayon (parallel compilation)
# https://github.com/wasmerio/wasmer/pull/2262
# Revome this when the new version of wasmer is published.
wasmer-compiler-singlepass = { git = "https://github.com/near/wasmer", branch = "1.0.2-single-threaded" }
[profile.release]
overflow-checks = true
[profile.bench]
overflow-checks = true
[profile.dev.package.hex]
opt-level = 3 # BLS library is too slow to use in debug
[profile.dev.package.ring]
opt-level = 3 # BLS library is too slow to use in debug
[profile.dev.package.rand]
opt-level = 3 # BLS library is too slow to use in debug
[profile.dev.package.bs58]
opt-level = 3 # bs58 library is too slow to use in debug