-
Notifications
You must be signed in to change notification settings - Fork 85
/
Cargo.toml
150 lines (146 loc) · 3.52 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
[workspace]
# Using version 2 to avoid unifying features. For more info, read:
# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2
resolver = "2"
members = [
"crates/papyrus_base_layer",
"crates/papyrus_common",
"crates/papyrus_config",
"crates/papyrus_execution",
"crates/papyrus_load_test",
"crates/papyrus_monitoring_gateway",
"crates/papyrus_network",
"crates/papyrus_node",
"crates/papyrus_p2p_sync",
"crates/papyrus_proc_macros",
"crates/papyrus_protobuf",
"crates/papyrus_rpc",
"crates/papyrus_storage",
"crates/papyrus_sync",
"crates/starknet_client",
"crates/test_utils",
"crates/sequencing/papyrus_block_builder",
"crates/sequencing/papyrus_consensus",
]
# Sequencing crates are not part of the default members.
default-members = [
"crates/papyrus_base_layer",
"crates/papyrus_common",
"crates/papyrus_config",
"crates/papyrus_execution",
"crates/papyrus_load_test",
"crates/papyrus_monitoring_gateway",
"crates/papyrus_network",
"crates/papyrus_node",
"crates/papyrus_p2p_sync",
"crates/papyrus_proc_macros",
"crates/papyrus_rpc",
"crates/papyrus_storage",
"crates/papyrus_sync",
"crates/starknet_client",
"crates/test_utils",
]
[workspace.package]
version = "0.4.0-rc.0"
edition = "2021"
repository = "https://github.com/starkware-libs/papyrus/"
license = "Apache-2.0"
license-file = "LICENSE"
[workspace.dependencies]
anyhow = "1.0.44"
assert-json-diff = "2.0.2"
assert_matches = "1.5.0"
async-stream = "0.3.3"
async-trait = "0.1.56"
axum = "0.6.12"
base64 = "0.13.0"
blockifier = "0.8.0-rc.0"
bytes = "1"
byteorder = "1.4.3"
cairo-lang-casm = "2.7.0-rc.2"
cairo-lang-utils = "2.7.0-rc.2"
cairo-lang-starknet-classes = "2.7.0-rc.2"
cairo-vm = "1.0.0-rc5"
camelpaste = "0.1.0"
chrono = "0.4.26"
clap = { version = "4.3.10" }
colored = "2.1.0"
const_format = "0.2.30"
deadqueue = "0.2.4"
defaultmap = "0.5.0"
derive_more = "0.99.16"
enum-iterator = "1.4.1"
ethers = "2.0.3"
flate2 = "1.0.24"
futures = "0.3.21"
futures-util = "0.3.21"
hex = "0.4.3"
http = "0.2.8"
human_bytes = "0.4.3"
hyper = "0.14"
indexmap = "2.1.0"
insta = "1.29.0"
integer-encoding = "3.0.4"
itertools = "0.10.5"
jsonrpsee = "0.20.3"
jsonschema = "0.17.0"
lazy_static = "1.4.0"
libmdbx = "0.3.5"
libp2p = "0.53.2"
libp2p-swarm-test = "0.3.0"
libp2p-yamux = ">=0.13.3"
lru = "0.12.0"
memmap2 = "0.8.0"
metrics = "0.21.0"
metrics-exporter-prometheus = "0.12.1"
mockall = "0.11.2"
mockito = "0.31.0"
num-bigint = "0.4"
num-traits = "0.2.15"
once_cell = "1.17.1"
os_info = "3.6.0"
page_size = "0.6.0"
parity-scale-codec = "3.6.12"
parity-scale-codec-derive = "3.6.12"
paste = "1.0.9"
primitive-types = "0.12.1"
pretty_assertions = "1.3.0"
prometheus-parse = "0.2.4"
prost = "0.12.1"
prost-build = "0.12.1"
prost-types = "0.12.1"
rand = "0.8.5"
rand_chacha = "0.3.1"
regex = "1.9.0"
replace_with = "0.1.7"
reqwest = "0.11"
rustc-hex = "2.1.0"
schemars = "0.8.12"
serde = "1.0.130"
serde_json = "1.0.81"
serde_repr = "0.1"
serde_yaml = "0.9.16"
sha3 = "0.10.8"
simple_logger = "4.0.0"
starknet_api = "0.13.0-rc.0"
starknet-core = "0.6.0"
starknet-types-core = "0.1.5"
static_assertions = "1.1.0"
statistical = "1.0.0"
strum = "0.25.0"
strum_macros = "0.25.2"
tempfile = "3.3.0"
test-case = "3.2.1"
test-log = "0.2.14"
thiserror = "1.0.31"
tokio = "1.18.2"
tokio-retry = "0.3"
tokio-stream = "0.1.8"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
tower = "0.4"
unsigned-varint = "0.8.0"
url = "2.2.2"
validator = "0.12"
void = "1.0.2"
zstd = "0.13.1"