-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (40 loc) · 1.41 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
[workspace]
members = ["crates/brainfuck_vm", "crates/brainfuck_prover"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Simon Malatrait <[email protected]>"]
description = "Brainfuck ZK-VM with STWO"
[workspace.lints]
rust.unreachable_pub = "warn"
rust.unused_must_use = "deny"
rust.rust_2018_idioms = { level = "deny", priority = -1 }
rustdoc.all = "warn"
[workspace.lints.clippy]
# all lints that are on by default (correctness, suspicious, style, complexity, perf)
all = { level = "warn", priority = -1 }
# new lints that are still under development
nursery = { level = "warn", priority = -1 }
# avoid lints that are too pedantic
future_not_send = "allow"
fallible_impl_from = "allow"
# lints which are rather strict or have occasional false positives
pedantic = { level = "warn", priority = -1 }
# avoid lints that are too pedantic
must_use_candidate = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
default_trait_access = "allow"
module_name_repetitions = "allow"
[workspace.dependencies]
brainfuck_vm = { path = "crates/brainfuck_vm" }
brainfuck_prover = { path = "crates/brainfuck_prover" }
clap = { version = "4.3.10", features = ["derive"] }
stwo-prover = { git = "https://github.com/starkware-libs/stwo", rev = "f6214d1" }
tracing = "0.1"
tracing-subscriber = "0.3"
num-traits = "0.2.19"
thiserror = "2.0"