microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
fuzz/Cargo.toml
26lines · modecode
| 1 | [package] |
| 2 | name = "fuzz" |
| 3 | publish = false |
| 4 | |
| 5 | version.workspace = true |
| 6 | authors.workspace = true |
| 7 | homepage.workspace = true |
| 8 | repository.workspace = true |
| 9 | edition.workspace = true |
| 10 | license.workspace = true |
| 11 | |
| 12 | [package.metadata] |
| 13 | cargo-fuzz = true |
| 14 | |
| 15 | [dependencies] |
| 16 | libfuzzer-sys = { workspace = true, optional = true } |
| 17 | qsc = { path = "../compiler/qsc" } |
| 18 | |
| 19 | [features] |
| 20 | do_fuzz = [ "dep:libfuzzer-sys" ] |
| 21 | |
| 22 | [[bin]] |
| 23 | name = "compile" |
| 24 | path = "fuzz_targets/compile.rs" |
| 25 | test = false |
| 26 | doc = false |
| 27 | |