microsoft/qdk
Publicmirrored from https://github.com/microsoft/qdkAvailable
source/paulimer/Cargo.toml
27lines · modecode
| 1 | [package] |
| 2 | name = "paulimer" |
| 3 | version = "0.0.1" |
| 4 | edition = "2021" |
| 5 | publish = false |
| 6 | |
| 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 8 | |
| 9 | [dependencies] |
| 10 | getrandom = { workspace = true, features = ["js"] } |
| 11 | num-derive = { workspace = true } |
| 12 | num-traits = { workspace = true } |
| 13 | rand = { workspace = true } |
| 14 | rustc-hash = { workspace = true } |
| 15 | sorted-vec = { workspace = true } |
| 16 | sorted-iter = { workspace = true } |
| 17 | |
| 18 | [dev-dependencies] |
| 19 | criterion = { workspace = true } |
| 20 | proptest = { workspace = true } |
| 21 | |
| 22 | [target.'cfg(unix)'.dev-dependencies] |
| 23 | pprof = { workspace = true } |
| 24 | |
| 25 | [[bench]] |
| 26 | name = "bitmatrix_benchmark" |
| 27 | harness = false |