-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
38 lines (38 loc) · 1008 Bytes
/
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
[workspace]
resolver = "2"
members = [
"crates/analysis",
"crates/api",
"crates/build",
"crates/cli",
"crates/data",
"crates/fingerprint",
"crates/recorder",
"crates/upload",
]
default-members = [
"crates/cli"
]
exclude = [
"benchmarks/shootout-ackermann",
"benchmarks/shootout-base64",
"benchmarks/shootout-ctype",
"benchmarks/shootout-ed25519",
"benchmarks/shootout-fib2",
"benchmarks/shootout-gimli",
"benchmarks/shootout-heapsort",
"benchmarks/shootout-keccak",
"benchmarks/shootout-matrix",
"benchmarks/shootout-memmove",
"benchmarks/shootout-minicsv",
"benchmarks/shootout-netstedloop",
"benchmarks/shootout-random",
"benchmarks/shootout-ratelimit",
"benchmarks/shootout-seqhash",
"benchmarks/shootout-sieve",
"benchmarks/shootout-switch",
"benchmarks/shootout-xblabla20",
"benchmarks/shootout-xchacha20",
"benchmarks/tract-onnx-image-classification",
"engines/native/libengine",
]