forked from microsoft/qsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
91 lines (86 loc) · 2.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[workspace]
members = [
"allocator",
"allocator/mimalloc-sys",
"compiler/qsc",
"compiler/qsc_ast",
"compiler/qsc_circuit",
"compiler/qsc_codegen",
"compiler/qsc_data_structures",
"compiler/qsc_doc_gen",
"compiler/qsc_eval",
"compiler/qsc_fir",
"compiler/qsc_frontend",
"compiler/qsc_hir",
"compiler/qsc_linter",
"compiler/qsc_lowerer",
"compiler/qsc_parse",
"compiler/qsc_partial_eval",
"compiler/qsc_passes",
"compiler/qsc_project",
"compiler/qsc_rir",
"fuzz",
"katas",
"language_service",
"library",
"pip",
"resource_estimator",
"wasm",
]
resolver = "2"
[workspace.package]
authors = ["Microsoft"]
homepage = "https://github.com/microsoft/qsharp"
repository = "https://github.com/microsoft/qsharp"
edition = "2021"
license = "MIT"
version = "0.0.0"
[workspace.dependencies]
bitflags = "2.4.2"
clap = "4.4"
criterion = { version = "0.5", default-features = false }
difference = "2.0.0"
enum-iterator = "1.5"
env_logger = "0.10"
expect-test = "1.4"
futures = "0.3"
futures-util = "0.3"
fasteval = "0.2"
getrandom = "0.2"
indoc = "2.0"
js-sys = "0.3"
libfuzzer-sys = "0.4"
log = "0.4"
miette = "5.10"
thiserror = "1.0"
num-bigint = "0.4"
num-complex = "0.4"
num-traits = "0.2"
probability = "0.20"
indenter = "0.3"
regex-lite = "0.1"
rustc-hash = "1.1.0"
serde = { version = "1.0", features = [ "derive" ] }
serde-wasm-bindgen = "0.6"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
rand = "0.8"
serde_json = "1.0"
pyo3 = "0.20"
quantum-sparse-sim = { git = "https://github.com/qir-alliance/qir-runner", rev = "54f2ffc097861146a2cc6595edaaffa7e2fdbf15", default-features = false }
async-trait = "0.1"
tokio = { version = "1.35", features = ["macros", "rt"] }
[workspace.lints.clippy]
mod_module_files = "warn"
pedantic = "warn"
unwrap_used = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[profile.release]
debug = "limited"
strip = "symbols"
lto = "fat"
codegen-units = 1
[profile.release.package.fuzz]
codegen-units = 16