-
Notifications
You must be signed in to change notification settings - Fork 90
/
Cargo.toml
103 lines (98 loc) · 2.34 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
92
93
94
95
96
97
98
99
100
101
102
103
[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_qasm3",
"compiler/qsc_rir",
"fuzz",
"katas",
"language_service",
"library",
"pip",
"resource_estimator",
"samples_test",
"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"
clap = "4.4"
criterion = { version = "0.5", default-features = false }
difference = "2.0"
enum-iterator = "2.1"
env_logger = "0.11"
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 = { version = "7.2", features = ["fancy-no-syscall"] }
thiserror = "1.0"
nalgebra = { version = "0.33" }
num-bigint = "0.4"
num-complex = "0.4"
num-traits = "0.2"
oq3_source_file = "0.6.0"
oq3_syntax = "0.6.0"
oq3_parser = "0.6.0"
oq3_lexer = "0.6.0"
oq3_semantics = "0.6.0"
probability = "0.20"
indenter = "0.3"
regex-lite = "0.1"
rustc-hash = "1"
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.22"
quantum-sparse-sim = { git = "https://github.com/qir-alliance/qir-runner", tag = "v0.7.4" }
async-trait = "0.1"
tokio = { version = "1.35", features = ["macros", "rt"] }
[workspace.lints.clippy]
mod_module_files = "warn"
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
needless_raw_string_hashes = "allow"
unnecessary_wraps = "allow"
default_trait_access = "allow"
enum_glob_use = "allow"
[profile.release]
debug = "limited"
strip = "symbols"
lto = "fat"
codegen-units = 1
[profile.release.package.fuzz]
codegen-units = 16