microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
iadavis/pipeline-issue-debugging

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/pip/Cargo.toml

61lines · modecode

1[package]
2name = "qsharp"
3description = "Q# Python Bindings"
4
5version.workspace = true
6authors.workspace = true
7homepage.workspace = true
8repository.workspace = true
9edition.workspace = true
10license.workspace = true
11
12[dependencies]
13memchr = { workspace = true }
14noisy_simulator = { path = "../noisy_simulator" }
15num-bigint = { workspace = true }
16num-complex = { workspace = true }
17num-traits = { workspace = true }
18qsc = { path = "../compiler/qsc" }
19qdk_simulators = { path = "../simulators" }
20resource_estimator = { path = "../resource_estimator" }
21miette = { workspace = true, features = ["fancy"] }
22rustc-hash = { workspace = true }
23serde = { workspace = true, features = ["derive"] }
24serde_json = { workspace = true }
25rayon = { workspace = true }
26rand = { workspace = true }
27
28[dev-dependencies]
29expect-test = { workspace = true }
30
31[lints]
32workspace = true
33
34[target.'cfg(not(any(target_family = "wasm")))'.dependencies]
35allocator = { path = "../allocator" }
36
37[target.'cfg(not(any(target_os = "windows")))'.dependencies]
38pyo3 = { workspace = true, features = [
39 "abi3-py310",
40 "extension-module",
41 "num-bigint",
42 "num-complex",
43] }
44
45[target.'cfg(any(target_os = "windows"))'.dependencies]
46# generate-import-lib: skip requiring Python 3 distribution
47# files to be present on the (cross-)compile host system.
48pyo3 = { workspace = true, features = [
49 "abi3-py310",
50 "extension-module",
51 "generate-import-lib",
52 "num-bigint",
53 "num-complex",
54] }
55
56[lib]
57crate-type = ["cdylib"]
58doctest = false
59
60[package.metadata.maturin]
61name = "qsharp._native"
62