microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.25.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/paulimer/Cargo.toml

27lines · modecode

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