-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml.orig
73 lines (65 loc) · 1.87 KB
/
Cargo.toml.orig
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
[package]
name = "near-primitives"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "This crate provides the base set of primitives used by other nearcore crates"
repository.workspace = true
license.workspace = true
publish = true
[dependencies]
arbitrary.workspace = true
borsh.workspace = true
bytesize.workspace = true
cfg-if.workspace = true
chrono.workspace = true
derive_more.workspace = true
easy-ext.workspace = true
enum-map.workspace = true
hex.workspace = true
num-rational.workspace = true
once_cell.workspace = true
primitive-types.workspace = true
rand.workspace = true
reed-solomon-erasure.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
serde_yaml.workspace = true
smart-default.workspace = true
stdx.workspace = true
strum.workspace = true
thiserror.workspace = true
time.workspace = true
tracing.workspace = true
near-crypto.workspace = true
near-fmt.workspace = true
near-primitives-core.workspace = true
near-rpc-error-macro.workspace = true
near-vm-errors.workspace = true
[features]
sandbox = []
dump_errors_schema = ["near-rpc-error-macro/dump_errors_schema"]
protocol_feature_fix_staking_threshold = []
protocol_feature_fix_contract_loading_cost = []
protocol_feature_reject_blocks_with_outdated_protocol_version = []
protocol_feature_preparation_v2 = []
protocol_feature_near_vm_runtime = []
nightly = [
"nightly_protocol",
"protocol_feature_fix_staking_threshold",
"protocol_feature_fix_contract_loading_cost",
"protocol_feature_reject_blocks_with_outdated_protocol_version",
"protocol_feature_preparation_v2",
"protocol_feature_near_vm_runtime",
]
nightly_protocol = []
calimero_zero_storage = []
[dev-dependencies]
assert_matches.workspace = true
bencher.workspace = true
insta.workspace = true
[[bench]]
name = "serialization"
harness = false