microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
7421e7dd1015dcbd940bf843d33583470de580ea

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/pip/Cargo.toml

42lines · 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]
13noisy_simulator = { path = "../noisy_simulator" }
14num-bigint = { workspace = true }
15num-complex = { workspace = true }
16qsc = { path = "../compiler/qsc" }
17resource_estimator = { path = "../resource_estimator" }
18miette = { workspace = true, features = ["fancy"] }
19rustc-hash = { workspace = true }
20serde = { workspace = true, features = ["derive"] }
21serde_json = { workspace = true }
22
23[lints]
24workspace = true
25
26[target.'cfg(not(any(target_family = "wasm")))'.dependencies]
27allocator = { path = "../allocator" }
28
29[target.'cfg(not(any(target_os = "windows")))'.dependencies]
30pyo3 = { workspace = true, features = ["abi3-py39", "extension-module", "num-bigint", "num-complex"] }
31
32[target.'cfg(any(target_os = "windows"))'.dependencies]
33# generate-import-lib: skip requiring Python 3 distribution
34# files to be present on the (cross-)compile host system.
35pyo3 = { workspace = true, features = ["abi3-py39", "extension-module", "generate-import-lib", "num-bigint", "num-complex"] }
36
37[lib]
38crate-type = ["cdylib"]
39doctest = false
40
41[package.metadata.maturin]
42name = "qsharp._native"
43