-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
70 lines (66 loc) · 2.73 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
[workspace]
resolver = "2"
members = [
"move-mutation-test",
"move-mutator",
"move-spec-test",
"mutator-common",
]
# All workspace members should inherit these keys
# for package declarations.
[workspace.package]
authors = ["Eiger <hello@eiger.co>"]
edition = "2021"
homepage = "https://www.eiger.co/"
license = "Apache-2.0"
publish = false
repository = "https://github.com/eigerco/move-spec-testing"
rust-version = "1.78.0"
[workspace.dependencies]
ahash = "0.8"
anyhow = "1.0"
aptos = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
aptos-framework = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
aptos-gas-schedule = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
aptos-types = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
aptos-vm = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
clap = { version = "4.5", features = ["derive"] }
codespan = "0.11"
codespan-reporting = "0.11"
diffy = "0.3"
datatest-stable = "0.2"
either = "1.9"
fixed = "= 1.25.1" # required by aptos deps
fs_extra = "1.3"
home = "=0.5.9" # required by aptos deps
itertools = "0.13"
log = "0.4"
move-cli = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-command-line-common = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-compiler = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-compiler-v2 = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-coverage = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-model = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-mutator = { path = "move-mutator" }
move-package = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-prover = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-symbol-pool = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-unit-test = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
move-vm-runtime = { git = "https://github.com/aptos-labs/aptos-core.git", branch = "main" }
mutator-common = { path = "mutator-common" }
num = "0.4"
num-traits = "0.2"
pretty_env_logger = "0.5"
prettytable-rs = "0.10"
rand = "0.8"
rayon = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
stacker = "0.1"
tabled = "0.16"
tempfile = "3.12"
termcolor = "1.1" # aptos deps require 1.1 here
# These below are necessary for some aptos deps
[patch.crates-io]
merlin = { git = "https://github.com/aptos-labs/merlin" }
x25519-dalek = { git = "https://github.com/aptos-labs/x25519-dalek", branch = "zeroize_v1" }