-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 895 Bytes
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 895 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
46
47
48
49
50
51
[package]
name = "json2xml_rs-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
arbitrary = { version = "1", features = ["derive"] }
[dependencies.json2xml_rs]
path = ".."
default-features = false
[[bin]]
name = "fuzz_escape_xml"
path = "fuzz_targets/fuzz_escape_xml.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_wrap_cdata"
path = "fuzz_targets/fuzz_wrap_cdata.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_is_valid_xml_name"
path = "fuzz_targets/fuzz_is_valid_xml_name.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_make_valid_xml_name"
path = "fuzz_targets/fuzz_make_valid_xml_name.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_make_attr_string"
path = "fuzz_targets/fuzz_make_attr_string.rs"
test = false
doc = false
bench = false