microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
source/noisy_simulator/Cargo.toml
29lines · modecode
| 1 | [package] |
| 2 | name = "noisy_simulator" |
| 3 | description = "Q# noisy simulator" |
| 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 | [dependencies] |
| 13 | nalgebra = { workspace = true } |
| 14 | num-complex = { workspace = true } |
| 15 | rand = { workspace = true } |
| 16 | thiserror = { workspace = true } |
| 17 | |
| 18 | [dev-dependencies] |
| 19 | criterion = { workspace = true, features = ["cargo_bench_support"]} |
| 20 | |
| 21 | [lints] |
| 22 | workspace = true |
| 23 | |
| 24 | [lib] |
| 25 | bench = false |
| 26 | |
| 27 | [[bench]] |
| 28 | name = "noisy_simulator" |
| 29 | harness = false |
| 30 | |