microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
093ccfe61ad36cf37e941166f17d21c2a4bcd8f8

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

fuzz/Cargo.toml

32lines · modecode

1[package]
2name = "fuzz"
3publish = false
4
5version.workspace = true
6authors.workspace = true
7homepage.workspace = true
8repository.workspace = true
9edition.workspace = true
10license.workspace = true
11
12[package.metadata]
13cargo-fuzz = true
14
15[dependencies]
16libfuzzer-sys = { workspace = true, optional = true }
17qsc = { path = "../compiler/qsc" }
18
19[target.'cfg(not(any(target_family = "wasm")))'.dependencies]
20allocator = { path = "../allocator" }
21
22[features]
23do_fuzz = [ "dep:libfuzzer-sys" ]
24
25[lints]
26workspace = true
27
28[[bin]]
29name = "compile"
30path = "fuzz_targets/compile.rs"
31test = false
32doc = false
33