-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
89 lines (82 loc) · 2.85 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
[package]
name = "move-smith"
version = "0.1.0"
description = "A Move source code level fuzzer."
license = "Apache-2.0"
edition = "2021"
[features]
default = []
git_deps = [
"move-compiler-v2",
"move-model",
"move-package",
"move-transactional-test-runner",
]
local_deps = [
"move-compiler-v2-local",
"move-model-local",
"move-package-local",
"move-transactional-test-runner-local",
]
[dependencies]
anyhow = { workspace = true }
arbitrary = { workspace = true }
clap = { workspace = true }
derive_builder = { workspace = true }
env_logger = { workspace = true }
indicatif = { workspace = true }
log = { workspace = true }
move-compiler-v2 = { git = "https://github.com/aptos-labs/aptos-core.git", package = "move-compiler-v2", optional = true }
move-compiler-v2-local = { path = "../aptos-core/third_party/move/move-compiler-v2", package = "move-compiler-v2", optional = true }
move-model = { git = "https://github.com/aptos-labs/aptos-core.git", package = "move-model", optional = true }
move-model-local = { path = "../aptos-core/third_party/move/move-model", package = "move-model", optional = true }
move-package = { git = "https://github.com/aptos-labs/aptos-core.git", package = "move-package", optional = true }
move-package-local = { path = "../aptos-core/third_party/move/tools/move-package", package = "move-package", optional = true }
move-transactional-test-runner = { git = "https://github.com/aptos-labs/aptos-core.git", package = "move-transactional-test-runner", optional = true }
move-transactional-test-runner-local = { path = "../aptos-core/third_party/move/testing-infra/transactional-test-runner", package = "move-transactional-test-runner", optional = true }
num-bigint = { workspace = true }
num_cpus = { workspace = true }
once_cell = { workspace = true }
rand = { workspace = true }
rand_distr = { workspace = true }
rayon = { workspace = true }
regex = { workspace = true }
serde = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true }
toml = { workspace = true }
serde_json = { workspace = true }
[workspace.dependencies]
anyhow = "1.0.86"
num_cpus = "1.16.0"
arbitrary = { version = "1.3.2", features = ["derive"] }
clap = { version = "4.5.15", features = ["derive"] }
derive_builder = "0.20.0"
env_logger = "0.11.5"
indicatif = { version = "0.15.0", features = ["rayon"] }
log = "0.4.22"
num-bigint = "0.4.6"
once_cell = "1.19.0"
rand = "0.8.5"
rand_distr = "0.4.3"
rayon = "1.10.0"
regex = "1.10.6"
serde = { version = "1.0.207", features = ["derive"] }
tempfile = "3.12.0"
tokio = "1.39.2"
toml = "0.8.19"
serde_json = "1.0.127"
[workspace]
members = ["fuzz"]
[lib]
name = "move_smith"
path = "src/lib.rs"
required-features = ["git_deps"]
[[bin]]
name = "move-smith"
path = "src/cli/main.rs"
required-features = ["git_deps"]
[[bin]]
name = "move-smith-local"
path = "src/cli/main.rs"
required-features = ["local_deps"]