-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (56 loc) · 2.05 KB
/
Cargo.toml
File metadata and controls
59 lines (56 loc) · 2.05 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
members = [
"crates/tensor4all-tensorbackend",
"crates/tensor4all-core",
"crates/tensor4all-treetn",
"crates/tensor4all-itensorlike",
"crates/tensor4all-quanticstransform",
"crates/tensor4all-tcicore",
"crates/tensor4all-simplett",
"crates/tensor4all-partitionedtt",
"crates/tensor4all-tensorci",
"crates/tensor4all-quanticstci",
"crates/tensor4all-treetci",
"crates/tensor4all-capi",
"crates/tensor4all-hdf5",
"tools/api-dump",
"xtask",
"docs/book-tests",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["tensor4all collaboration"]
license = "MIT"
repository = "https://github.com/tensor4all/tensor4all-rs"
[profile.release]
debug = true # Include debug info in release builds (enables detailed RUST_BACKTRACE)
[workspace.dependencies]
num-complex = "0.4"
num-traits = "0.2"
anyhow = "1.0"
approx = "0.5"
criterion = "0.5"
bnum = "0.12"
uint = "0.10"
libc = "0.2"
paste = "1.0"
faer = "0.23"
thiserror = "2.0"
rand = "0.9"
rand_chacha = "0.9"
rand_distr = "0.5"
petgraph = "0.7"
dyn-clone = "1.0"
kryst = { version = "2.4", default-features = false, features = ["rayon", "logging"] }
omeco = "0.2.1"
hdf5-metno = { version = "0.12", default-features = false }
ndarray = "0.17"
quanticsgrids = { git = "https://github.com/tensor4all/quanticsgrids-rs", rev = "a76b8fb" }
hdf5-rt = { git = "https://github.com/tensor4all/hdf5-rt", default-features = false }
tenferro = { git = "https://github.com/tensor4all/tenferro-rs.git", rev = "adffa6515274a35054b9c6797e2adf319e2852c0" }
tenferro-algebra = { git = "https://github.com/tensor4all/tenferro-rs.git", rev = "adffa6515274a35054b9c6797e2adf319e2852c0" }
tenferro-device = { git = "https://github.com/tensor4all/tenferro-rs.git", rev = "adffa6515274a35054b9c6797e2adf319e2852c0" }
tenferro-einsum = { git = "https://github.com/tensor4all/tenferro-rs.git", rev = "adffa6515274a35054b9c6797e2adf319e2852c0" }
tenferro-tensor = { git = "https://github.com/tensor4all/tenferro-rs.git", rev = "adffa6515274a35054b9c6797e2adf319e2852c0" }