-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 1.04 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
[workspace]
resolver = "2"
members = [
"selene-core",
"selene-sim",
"selene-ext/simulators/stim",
"selene-ext/simulators/quest",
"selene-ext/simulators/coinflip",
"selene-ext/simulators/classical-replay",
"selene-ext/simulators/quantum-replay",
"selene-ext/runtimes/simple",
"selene-ext/runtimes/soft_rz",
"selene-ext/error-models/depolarizing",
"selene-ext/error-models/simple-leakage",
"selene-ext/error-models/ideal",
]
[workspace.package]
rust-version = "1.85"
authors = ["Jake Arkinstall <jake.arkinstall@quantinuum.com>"]
edition = "2024"
version = "0.2.12"
repository = "https://github.com/quantinuum/selene"
license = "Apache-2.0"
[workspace.dependencies]
anyhow = "1.0"
rand = "0.9"
approx = { version = "0.5.1" }
clap = { version = "4.5", features = ["derive"] }
chrono = "0.4"
thiserror = "2"
[workspace.lints.clippy]
undocumented_unsafe_blocks = "allow" # TODO: add safety docs
missing_safety_doc = "allow" # TODO: add safety docs
too_many_arguments = "allow" # ouroborous violates this