forked from StellarRouter/StellarRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (36 loc) · 997 Bytes
/
Copy pathCargo.toml
File metadata and controls
45 lines (36 loc) · 997 Bytes
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
[package]
name = "router-api-server-fuzz"
version = "0.0.1"
edition = "2021"
publish = false
[package.metadata]
cargo-fuzz = true
# This `[workspace]` declaration makes the fuzz crate its own workspace so that
# cargo commands run in the repo root do not try to build libfuzzer-sys (which
# requires nightly) as part of the main workspace.
[workspace]
members = ["."]
[dependencies]
libfuzzer-sys = "0.4"
serde_json = "1.0"
[dependencies.router-api-server]
path = "../api-server"
[dependencies.router-metrics-exporter]
path = "../metrics"
# Disable default features on the fuzz crate itself to keep compile times short.
[[bin]]
name = "fuzz_xdr_parse"
path = "fuzz_targets/fuzz_xdr_parse.rs"
doc = false
[[bin]]
name = "fuzz_strkey_decode"
path = "fuzz_targets/fuzz_strkey_decode.rs"
doc = false
[[bin]]
name = "fuzz_base64_decode"
path = "fuzz_targets/fuzz_base64_decode.rs"
doc = false
[[bin]]
name = "fuzz_metrics_rpc_parse"
path = "fuzz_targets/fuzz_metrics_rpc_parse.rs"
doc = false