microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6f9284d127110b76c2edcad4a6f15aac9e9dc83a

Branches

Tags

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

Clone

HTTPS

Download ZIP

fuzz/Cargo.toml

32lines · modepreview

[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 = "compile"
path = "fuzz_targets/compile.rs"
test = false
doc = false