-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1.49 KB
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
[workspace]
resolver = "2"
members = [
"crates/bicycle_common",
"crates/bicycle_cliffords",
"crates/bicycle_compiler",
"crates/bicycle_benchmark",
"crates/bicycle_numerics",
"crates/bicycle_random_numerics",
]
[workspace.package]
version = "0.2.1"
authors = [
"Patrick Rall <patrickjrall@ibm.com>",
"Eddie Schoute <eddie.schoute@ibm.com>",
"John Lapeyre <john.lapeyre@ibm.com>",
]
description = "Compiler and benchmarking for the bicycle quantum architecture"
license = "Apache-2.0"
keywords = ["quantum", "compiler", "benchmarking", "architecture"]
categories = ["science", "compilers"]
repository = "https://github.com/qiskit-community/bicycle-architecture-compiler"
rust-version = "1.86.0"
edition = "2024"
[workspace.dependencies]
# local crates
bicycle_benchmark = { path = "crates/bicycle_benchmark", version = "0.2.1" }
bicycle_cliffords = { path = "crates/bicycle_cliffords", version = "0.2.1" }
bicycle_common = { path = "crates/bicycle_common", version = "0.2.1" }
bicycle_compiler = { path = "crates/bicycle_compiler", version = "0.2.1" }
bicycle_numerics = { path = "crates/bicycle_numerics", version = "0.2.1" }
bicycle_random_numerics = { path = "crates/bicycle_random_numerics", version = "0.2.1" }
[workspace.metadata.release]
tag-name = "v{{version}}"
shared-version = true # Ensures all crates share the same version
consolidate-commits = true # Creates a single commit for all changes
[profile.test]
opt-level = 1 # Testing is very slow without optimization