forked from microsoft/qdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (30 loc) · 671 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (30 loc) · 671 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
[package]
name = "fuzz"
publish = false
version.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
edition.workspace = true
license.workspace = true
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = { workspace = true, optional = true }
qsc = { path = "../compiler/qsc" }
[target.'cfg(not(any(target_family = "wasm")))'.dependencies]
allocator = { path = "../allocator" }
[features]
do_fuzz = [ "dep:libfuzzer-sys" ]
[lints]
workspace = true
[[bin]]
name = "qsharp"
path = "fuzz_targets/qsharp.rs"
test = false
doc = false
[[bin]]
name = "qasm"
path = "fuzz_targets/qasm.rs"
test = false
doc = false