@@ -37,6 +37,7 @@ monza-opt-executor = { path = "protocol-units/execution/monza/opt-executor" }
37
37
monza-fin-executor = { path = " protocol-units/execution/monza/fin-executor" }
38
38
monza-execution-util = { path = " protocol-units/execution/monza/util" }
39
39
monza-executor = { path = " protocol-units/execution/monza/executor" }
40
+
40
41
# # types
41
42
movement-types = { path = " util/movement-types" }
42
43
# # buildtime
@@ -55,7 +56,7 @@ move-rocks = { path = "protocol-units/mempool/move-rocks" }
55
56
sequencing-util = { path = " protocol-units/sequencing/util" }
56
57
memseq = { path = " protocol-units/sequencing/memseq" }
57
58
# random
58
- rand = " 0.8.4 "
59
+ rand = " 0.7.3 "
59
60
60
61
anyhow = " 1.0"
61
62
# To try (experimental) std support, add `features = [ "std" ]` to risc0-zkvm
@@ -68,10 +69,41 @@ serde = "1.0"
68
69
serde_json = " 1.0"
69
70
70
71
71
- tempfile = " 3.2.0"
72
-
73
- # runtime
74
- tokio = { version = " 1.36.0" , features = [" fs" , " rt-multi-thread" ] }
72
+ auto_impl = " 1.2.0"
73
+ chrono = " 0.4.37"
74
+ serde_with = " 3.7.0"
75
+ derivative = " 2.2.0"
76
+ derive_more = { version = " 0.99.11" , default-features = false }
77
+ bytes = { version = " 1.2.1" , default-features = false }
78
+ clap = { version = " 4.4.10" , features = [" derive" ] }
79
+ log = " 0.4.21"
80
+ hex = { version = " 0.4.3" , default-features = false , features = [
81
+ " alloc" ,
82
+ " serde" ,
83
+ ] }
84
+ async-trait = " 0.1.71"
85
+ tracing = " 0.1.40"
86
+ tracing-log = " 0.2.0"
87
+ env_logger = " 0.11.0"
88
+ tokio = { version = " 1.35.1" , features = [" full" ] }
89
+ tokio-stream = " 0.1.15"
90
+ async-stream = " 0.3.0"
91
+ tempfile = " 3.5"
92
+ fail = " 0.5.1"
93
+ jsonrpsee = { version = " 0.20.1" , features = [" jsonrpsee-types" ] }
94
+ proptest = { version = " 1.3.1" , default-features = false , features = [" alloc" ] }
95
+ poem = { version = " =1.3.59" , features = [" anyhow" , " rustls" ] }
96
+ poem-openapi = { version = " =2.0.11" , features = [" swagger-ui" , " url" ] }
97
+ schemars = { version = " 0.8.16" , features = [" derive" ] }
98
+ thiserror = " 1.0.50"
99
+ x25519-dalek = " 1.0.1"
100
+ rand_core = " 0.5.1"
101
+ zstd-sys = " 2.0.9"
102
+ async-channel = " 2.2.1"
103
+ sha2 = " 0.10.8"
104
+ once_cell = " 1.8.0"
105
+ url = " 2.2.2"
106
+ dirs = " 3.0.2"
75
107
76
108
# storage
77
109
rocksdb = { version = " 0.21.0" , features = [
@@ -85,7 +117,6 @@ rocksdb = { version = "0.21.0", features = [
85
117
# cryptography
86
118
jmt = " 0.9.0"
87
119
trie-db = " 0.28.0"
88
- sha2 = " 0.10"
89
120
90
121
# for jmt
91
122
digest = " 0.10"
@@ -95,43 +126,16 @@ mirai-annotations = "1.10.1"
95
126
num-derive = " 0.4.2"
96
127
num-traits = " 0.2.14"
97
128
parking_lot = { version = " 0.12.1" }
98
- thiserror = { version = " 1.0.24" }
99
129
blake3 = { version = " 1.4.0" , features = [" traits-preview" ] }
100
- hex = { vesion = " 0.4.3" , features = [" serde" ] }
101
- tracing = " 0.1"
102
130
ics23 = { version = " 0.11.0" }
103
131
104
-
105
- proptest = " 1.0"
106
132
proptest-derive = " 0.4"
107
133
108
134
# internal
109
135
# tentacles = { path = "protocol-units/cryptography/tentacles" }
110
136
move-vm-integration-test-helpers = { path = " test-helpers/move-vm-integration-test-helpers" }
111
137
move-vm-ext = { path = " types/move-vm-ext" }
112
138
113
- auto_impl = " 1.2.0"
114
- chrono = " 0.4.37"
115
- serde_with = " 3.7.0"
116
- derivative = " 2.2.0"
117
- derive_more = { version = " 0.99.11" , default-features = false }
118
- bytes = { version = " 1.2.1" , default-features = false }
119
- clap = { version = " 4.4.10" , features = [" derive" ] }
120
- log = " 0.4.21"
121
- async-trait = " 0.1.71"
122
- tokio-stream = " 0.1.15"
123
- async-stream = " 0.3.0"
124
- fail = " 0.5.1"
125
- jsonrpsee = { version = " 0.20.1" , features = [" jsonrpsee-types" ] }
126
- poem = { version = " =1.3.59" , features = [" anyhow" , " rustls" ] }
127
- poem-openapi = { version = " =2.0.11" , features = [" swagger-ui" , " url" ] }
128
- schemars = { version = " 0.8.16" , features = [" derive" ] }
129
- x25519-dalek = " 1.0.1"
130
- rand_core = " 0.5.1"
131
- zstd-sys = " 2.0.9"
132
- async-channel = " 2.2.1"
133
- once_cell = " 1.8.0"
134
- url = " 2.2.2"
135
139
136
140
risc0-build = " 0.20"
137
141
@@ -164,7 +168,9 @@ ethers-middleware = { version = "=2.0.10", default-features = false }
164
168
aptos-vm = { git = " https://github.com/movementlabsxyz/aptos-core" , branch = " monza" }
165
169
aptos-sdk = { git = " https://github.com/movementlabsxyz/aptos-core" , branch = " monza" }
166
170
aptos-consensus-types = { git = " https://github.com/movementlabsxyz/aptos-core" , branch = " monza" }
167
- aptos-crypto = { git = " https://github.com/movementlabsxyz/aptos-core" , branch = " monza" }
171
+ aptos-crypto = { git = " https://github.com/movementlabsxyz/aptos-core" , branch = " monza" , features = [
172
+ " cloneable-private-keys" ,
173
+ ] }
168
174
aptos-db = { git = " https://github.com/movementlabsxyz/aptos-core.git" , branch = " monza" }
169
175
aptos-api-types = { git = " https://github.com/movementlabsxyz/aptos-core" , branch = " monza" }
170
176
aptos-types = { git = " https://github.com/movementlabsxyz/aptos-core" , branch = " monza" }
0 commit comments