microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
7a91721a0834fb8bae997e86b46b910b79dbbebe

Branches

Tags

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

Clone

HTTPS

Download ZIP

fuzz/Cargo.toml

26lines · 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[features]
20do_fuzz = [ "dep:libfuzzer-sys" ]
21
22[[bin]]
23name = "compile"
24path = "fuzz_targets/compile.rs"
25test = false
26doc = false
27