-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (71 loc) · 1.72 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
[workspace]
members = ["bosing-py"]
[workspace.package]
version = "0.0.0-dev"
rust-version = "1.82"
license = "MIT"
authors = ["Jiahao Yuan <[email protected]>"]
description = "Waveform generator for pulse sequences in quantum computing"
repository = "https://github.com/kahojyun/Bosing"
keywords = ["pulse", "waveform", "awg"]
categories = ["science"]
[package]
name = "bosing"
edition = "2021"
version.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
description.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
[workspace.dependencies]
anyhow = "1.0.95"
bspline = "1.1.0"
cached = "0.54.0"
float-cmp = "0.10.0"
hashbrown = { version = "0.15.2", features = ["rayon"] }
itertools = "0.14.0"
ndarray = { version = "0.16.1", features = ["rayon"] }
num = "0.4.3"
numpy = "0.23.0"
ordered-float = "4.6.0"
pulp = "0.21.4"
pyo3 = { version = "0.23.4", features = [
"hashbrown",
"anyhow",
"generate-import-lib",
"abi3-py39",
] }
rayon = "1.10.0"
thiserror = "2.0.11"
# Testing
mockall = "0.13.1"
test-case = "3.3.1"
[dependencies]
anyhow.workspace = true
bspline.workspace = true
cached.workspace = true
float-cmp.workspace = true
hashbrown.workspace = true
itertools.workspace = true
ndarray.workspace = true
num.workspace = true
ordered-float.workspace = true
pulp.workspace = true
rayon.workspace = true
thiserror.workspace = true
[dev-dependencies]
mockall.workspace = true
test-case.workspace = true
[workspace.lints.rust]
rust-2018-idioms = "warn"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
allow_attributes = "warn"
todo = "warn"
unwrap_used = "warn"
[lints]
workspace = true