forked from near/nearcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
77 lines (70 loc) · 1.81 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
[workspace]
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/jsonrpc-tests",
"chain/jsonrpc-primitives",
"chain/jsonrpc-adversarial-primitives",
"chain/rosetta-rpc",
"test-utils/actix-test-utils",
"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",
"utils/near-rate-limiter",
]
[workspace.metadata.workspaces]
version = "0.10.0"
exclude = [
# v0.0.0 {
"neard",
"nearcore",
"integration-tests",
"chain/jsonrpc/jsonrpc-tests",
"runtime/near-test-contracts",
# }
]
[patch.crates-io]
[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.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