-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
103 lines (84 loc) · 2.44 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "spenso"
version = "0.4.1"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Lucien Huber <[email protected]>"]
description = "A tensor (n-dim array) network, iterating, and contraction (using automatic abstract index matching) library."
documentation = "https://docs.rs/spenso/latest/spenso/"
keywords = ["tensors", "contraction"]
readme = "README.md"
repository = "https://github.com/alphal00p/spenso"
[package.metadata.docs.rs]
all-features = true
[lib]
path = "src/spenso.rs"
[profile.bench]
lto = "fat"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
insta = { version = "1.38.0", features = ["yaml", "json", "ron", "toml"] }
[[bench]]
name = "gamma_net"
harness = false
required-features = ["shadowing"]
[[bench]]
name = "evaluate_net"
harness = false
required-features = ["shadowing"]
[[bench]]
name = "3LphotonsPhysical"
harness = false
required-features = ["shadowing"]
[[bench]]
name = "3LphotonEval"
harness = false
required-features = ["shadowing"]
[[example]]
name = "evaluate_network"
required-features = ["shadowing"]
[[example]]
name = "3LphotonsPhysical"
required-features = ["shadowing"]
[[example]]
name = "pres"
required-features = ["shadowing"]
[dependencies]
ahash = { version = "0.8.11", features = ["serde"] }
ambassador = "0.3.6"
anyhow = { version = "1.0.86", features = ["backtrace"] }
append-only-vec = "0.1.6"
approx = "0.5.1"
auto_enums = "0.8.6"
bitvec = { version = "1.0.1", features = ["serde"] }
const_format = { version = "0.2.32", features = ["rust_1_51"] }
constcat = "0.5.0"
delegate = "0.12.0"
derive_more = "0.99.17"
disjoint_impls = "0.7.1"
duplicate = "1.0.0"
dyn-clone = "1.0.17"
enum-try-as-inner = "0.1.1"
env_logger = "0.11.5"
flexi_logger = "0.28.5"
gat-lending-iterator = "0.1.5"
indexmap = { version = "2.2.6", features = ["serde"] }
itertools = "0.14.0"
log = "0.4.22"
num = { version = "0.4.3", features = ["serde"] }
once_cell = "1.20.2"
rand = "0.8.5"
rand_xoshiro = "0.6.0"
ref-ops = "0.2.5"
serde = "1.0.201"
serde_json = "1.0.117"
serde_toml = "0.0.1"
slotmap = { version = "1.0.7", features = ["serde"] }
smartstring = { version = "1.0.1", features = ["serde"] }
symbolica = { version = "0.15", optional = true }
thiserror = "1.0.60"
[features]
shadowing = ["dep:symbolica"]
[patch.crates-io]
# symbolica = { git = "https://github.com/benruijl/symbolica", branch = "no_namespace" }
# symbolica = { path = "../gammaloop/python/gammaloop/dependencies/symbolica" }