-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 727 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (30 loc) · 727 Bytes
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
[package]
name = "wigners"
version = "0.4.0"
edition = "2021"
rust-version = "1.74"
authors = ["Guillaume Fraux <guillaume.fraux@epfl.ch>"]
repository = "https://github.com/luthaf/wigners"
license = "MIT/Apache-2.0"
keywords = ["clebsch-gordan", "wigner"]
categories = ["science"]
readme = "README.md"
description = "Compute Wigner 3j and Clebsch-Gordan coefficients in pure Rust"
[lib]
crate-type = ["rlib", "cdylib"]
bench = false
[dependencies]
lazy_static = "1"
smallvec = "1"
parking_lot = "0.12"
rayon = "1"
num-bigint = "0.4"
num-traits = "0.2"
num-complex = "0.4"
# Pins for compatibility with rustc 1.74
rayon-core = "=1.12"
lru = "=0.16.4"
[dev-dependencies]
approx = "0.5"
[workspace]
members = ["benchmarks"]