-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
163 lines (150 loc) · 4.11 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
[workspace]
members = [
"triton-air",
"triton-constraint-builder",
"triton-constraint-circuit",
"triton-isa",
"triton-vm",
]
resolver = "2"
[profile.test]
opt-level = 1
build-override.opt-level = 3
[profile.release]
lto = "thin"
build-override.opt-level = 3
[profile.bench]
lto = "thin"
build-override.opt-level = 3
[profile.dev]
opt-level = 1
build-override.opt-level = 3
[workspace.package]
version = "0.44.0"
edition = "2021"
rust-version = "1.80"
authors = ["Triton Software AG"]
license = "Apache-2.0"
homepage = "https://triton-vm.org/"
repository = "https://github.com/TritonVM/triton-vm"
readme = "README.md"
documentation = "https://triton-vm.org/spec/"
[workspace.dependencies.air]
version = "0.44.0"
path = "triton-air"
package = "triton-air"
[workspace.dependencies.constraint-builder]
version = "0.44.0"
path = "triton-constraint-builder"
package = "triton-constraint-builder"
[workspace.dependencies.constraint-circuit]
version = "0.44.0"
path = "triton-constraint-circuit"
package = "triton-constraint-circuit"
[workspace.dependencies.isa]
version = "0.44.0"
path = "triton-isa"
package = "triton-isa"
[workspace.dependencies]
anyhow = "1.0"
arbitrary = { version = "1", features = ["derive"] }
assert2 = "0.3"
colored = "2.1"
clap = { version = "4", features = ["derive", "cargo", "wrap_help", "unicode", "string"] }
criterion = { package = "codspeed-criterion-compat", version = "2.7", features = ["html_reports"] }
directories = "5"
fs-err = "3.0"
get-size2 = { version = "0.1.2", features = ["derive"] }
indexmap = { version = "2.5.0", features = ["rayon"] }
insta = "1.41.0"
itertools = "0.13"
lazy_static = "1.5"
ndarray = { version = "0.16", features = ["rayon"] }
nom = "7.1"
num-traits = "0.2"
prettyplease = "0.2"
pretty_assertions = "1.4"
proc-macro2 = "1.0"
proptest = "1.5"
proptest-arbitrary-interop = "0.1"
quote = "1.0"
rand = "0.8.5"
rand_core = "0.6.4"
rayon = "1.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
strum = { version = "0.26", features = ["derive"] }
syn = "2.0"
test-strategy = "0.4.0"
thiserror = "2.0"
twenty-first = "0.44.0"
unicode-width = "0.2"
divan = "0.1.14"
[workspace.lints.rust]
let_underscore_drop = "warn"
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
[workspace.lints.clippy]
cast_lossless = "warn"
cloned_instead_of_copied = "warn"
copy_iterator = "warn"
default_trait_access = "warn"
doc_link_with_quotes = "warn"
enum_glob_use = "warn"
expl_impl_clone_on_copy = "warn"
explicit_deref_methods = "warn"
explicit_into_iter_loop = "warn"
explicit_iter_loop = "warn"
filter_map_next = "warn"
flat_map_option = "warn"
fn_params_excessive_bools = "warn"
from_iter_instead_of_collect = "warn"
if_not_else = "warn"
implicit_clone = "warn"
inconsistent_struct_constructor = "warn"
inefficient_to_string = "warn"
invalid_upcast_comparisons = "warn"
items_after_statements = "warn"
large_digit_groups = "warn"
macro_use_imports = "warn"
manual_assert = "warn"
manual_instant_elapsed = "warn"
manual_let_else = "warn"
manual_ok_or = "warn"
manual_string_new = "warn"
many_single_char_names = "warn"
map_unwrap_or = "warn"
match_wild_err_arm = "warn"
match_wildcard_for_single_variants = "warn"
mismatching_type_param_order = "warn"
mut_mut = "warn"
needless_continue = "warn"
needless_for_each = "warn"
no_effect_underscore_binding = "warn"
option_option = "warn"
range_minus_one = "warn"
range_plus_one = "warn"
redundant_else = "warn"
ref_binding_to_reference = "warn"
ref_option_ref = "warn"
return_self_not_must_use = "warn"
same_functions_in_if_condition = "warn"
should_panic_without_expect = "warn"
stable_sort_primitive = "warn"
struct_field_names = "warn"
trivially_copy_pass_by_ref = "warn"
unchecked_duration_subtraction = "warn"
uninlined_format_args = "warn"
unnecessary_box_returns = "warn"
unnecessary_join = "warn"
unnecessary_wraps = "warn"
unnested_or_patterns = "warn"
#unreadable_literal = "warn"
unused_async = "warn"
used_underscore_binding = "warn"
verbose_bit_mask = "warn"
wildcard_imports = "warn"
[workspace.dependencies.cargo-husky]
version = "1.5"
default-features = false
features = ["precommit-hook", "run-cargo-clippy", "run-cargo-fmt"]