forked from move-language/move-sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
174 lines (167 loc) · 5.95 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
[workspace]
resolver = "2"
members = [
"crates/*",
]
# Dependencies that should be kept in sync through the whole workspace
[workspace.dependencies]
aes-gcm = "0.8.0"
anyhow = "1.0.52"
arbitrary = { version = "1.1.7", features = ["derive", "derive_arbitrary"] }
async-trait = "0.1.42"
bcs = "0.1.4"
better_any = "0.1.1"
bitvec = "0.19.4"
byteorder = "1.4.3"
bytes = "1.0.1"
chrono = "0.4.19"
clap = { version = "4", features = ["derive"] }
codespan = "0.11.1"
codespan-reporting = "0.11.1"
colored = "2.0.0"
criterion = "0.3.4"
criterion-cpu-time = "0.1.0"
crossbeam = "0.8"
crossbeam-channel = "0.5.0"
crossterm = "0.25.0"
curve25519-dalek = { version = "0.1.0", package = "curve25519-dalek-fiat", default-features = false, features = ["std", "u64_backend"] }
datatest-stable = "0.1.1"
derivative = "2.2.0"
difference = "2.0.0"
digest = "0.9.0"
dir-diff = "0.3.2"
dirs-next = "2.0.0"
dunce = "1.0.2"
ed25519-dalek = { version = "0.1.0", package = "ed25519-dalek-fiat", default-features = false, features = ["std", "serde", "u64_backend"] }
ethnum = "1.0.4"
fail = "0.4.0"
file_diff = "1.0.0"
futures = "0.3.12"
getrandom = "0.2.9"
heck = "0.3.2"
hex = "0.4.3"
hex-literal = "0.3.4"
hkdf = "0.10.0"
im = "15.1.0"
internment = { version = "0.5.0", features = [ "arc"] }
itertools = "0.10.0"
leb128 = "0.2.5"
libfuzzer-sys = "0.4"
log = { version = "0.4.14", features = ["serde"] }
lsp-server = "0.5.1"
lsp-types = "0.90.1"
memory-stats = "1.0.0"
mirai-annotations = "1.10.1"
named-lock = "0.2.0"
num = "0.4.0"
num-bigint = "0.4.0"
num_cpus = "1.13.0"
once_cell = "1.7.2"
ouroboros = "0.17.2"
parking_lot = "0.11.1"
paste = "1.0.5"
petgraph = "0.5.1"
phf = { version = "0.11", features = ["macros"] }
plotters = { version = "0.3.0", default_features = false, features = ["evcxr", "line_series", "histogram"]}
pretty = "0.10.0"
prettydiff = "0.4.0"
primitive-types = { version = "0.10.1", features = ["impl-serde"]}
proc-macro2 = "1.0.24"
proptest = "1.0.0"
proptest-derive = "0.3.0"
quote = "1.0.9"
rand = "0.8.0"
rayon = "1.5.0"
ref-cast = "1.0.6"
regex = "1.5.5"
ripemd160 = "0.9.1"
serde = { version = "1.0.124", features = ["derive"] }
serde-name = "0.1.1"
serde-reflection = "0.3.2"
serde_bytes = "0.11.5"
serde_json = "1.0.64"
serde_yaml = "0.8.26"
sha2 = "0.9.3"
sha3 = "0.9.1"
shell-words = "1.0.0"
simplelog = "0.9.0"
similar = "2.4.0"
smallvec = "1.6.1"
stacker = "0.1.15"
static_assertions = "1.1.0"
syn = { version = "1.0.64", features = ["derive"] }
tempfile = "3.2.0"
tera = "1.16.0"
thiserror = "1.0.24"
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
tokio = { version = "1.18.2", features = ["full"] }
toml = "0.5.8"
toml_edit = { version = "0.14.3", features = ["easy"] }
tracing = "0.1.26"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
treeline = "0.1.0"
tui = "0.19.0"
uint = "0.9.4"
url = "2.2.2"
variant_count = "1.1.0"
vfs = "0.10.0"
walkdir = "2.3.1"
whoami = { version = "1.2.1" }
x25519-dalek = { version = "0.1.0", package = "x25519-dalek-fiat", default-features = false, features = ["std", "u64_backend"] }
z3tracer = "0.8.0"
bytecode-interpreter-crypto = { path = "crates/bytecode-interpreter-crypto" }
enum-compat-util = { path = "crates/enum-compat-util"}
invalid-mutations = { path = "crates/invalid-mutations" }
module-generation = { path = "crates/module-generation" }
move-abstract-stack = { path = "crates/move-abstract-stack" }
move-binary-format = { path = "crates/move-binary-format" }
move-borrow-graph = { path = "crates/move-borrow-graph" }
move-bytecode-source-map = { path = "crates/move-bytecode-source-map" }
move-bytecode-utils = { path = "crates/move-bytecode-utils" }
move-bytecode-verifier = { path = "crates/move-bytecode-verifier" }
move-bytecode-verifier-meter = { path = "crates/move-bytecode-verifier-meter" }
move-bytecode-viewer = { path = "crates/move-bytecode-viewer" }
move-cli = { path = "crates/move-cli" }
move-command-line-common = { path = "crates/move-command-line-common" }
move-compiler = { path = "crates/move-compiler" }
move-core-types = { path = "crates/move-core-types" }
move-coverage = { path = "crates/move-coverage" }
move-disassembler = { path = "crates/move-disassembler" }
move-docgen = { path = "crates/move-docgen" }
move-errmapgen = { path = "crates/move-errmapgen" }
move-ir-compiler = { path = "crates/move-ir-compiler" }
move-ir-to-bytecode = { path = "crates/move-ir-to-bytecode" }
move-ir-to-bytecode-syntax = { path = "crates/move-ir-to-bytecode-syntax" }
move-ir-types = { path = "crates/move-ir-types" }
move-model = { path = "crates/move-model" }
move-package = { path = "crates/move-package" }
move-proc-macros = { path = "crates/move-proc-macros"}
move-prover = { path = "crates/move-prover" }
move-prover-test-utils = { path = "crates/move-prover-test-utils" }
move-read-write-set-types = { path = "crates/move-read-write-set-types" }
move-stackless-bytecode = { path = "crates/move-stackless-bytecode" }
move-stackless-bytecode-interpreter = { path = "crates/move-stackless-bytecode-interpreter" }
move-stdlib = { path = "crates/move-stdlib" }
move-symbol-pool = { path = "crates/move-symbol-pool" }
move-transactional-test-runner = { path = "crates/move-transactional-test-runner" }
move-unit-test = { path = "crates/move-unit-test" }
move-vm-config = { path = "crates/move-vm-config" }
move-vm-profiler = { path = "crates/move-vm-profiler" }
move-vm-runtime = { path = "crates/move-vm-runtime" }
move-vm-test-utils = { path = "crates/move-vm-test-utils" }
move-vm-types = { path = "crates/move-vm-types" }
prover_bytecode = { path = "crates/move-stackless-bytecode", package="move-stackless-bytecode" }
[profile.bench]
debug = true
[profile.dev]
debug = true
[profile.test.package.move-vm-integration-tests]
# opt-level 2 for move-compiler reduces the size of some of its
# (recursive) stack frames by up to 10x, avoiding stack overflows.
opt-level = 3
# use release settings to reduce memory pressure in the linking step in CI
[profile.ci]
inherits = "test"
debug = 0 # for saving disk space during linking
incremental = false
codegen-units = 16