forked from jassch/AdamsSSMasseyProductCalculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
22 lines (19 loc) · 768 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "massey"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ext = { path = "../sseq/ext" }
algebra = { path = "../sseq/ext/crates/algebra", default-features = false, features = ["json"] }
bivec = { path = "../sseq/ext/crates/bivec"}
#error = { path = "../sseq/ext/crates/error"}
fp = { path = "../sseq/ext/crates/fp", default-features = false }
once = { path = "../sseq/ext/crates/once"}
query = { path = "../sseq/ext/crates/query" }
#saveload = { path = "../sseq/ext/crates/saveload" }
#thread-token = { path = "../sseq/ext/crates/thread-token", optional = true }
anyhow = "1.0.0"
rayon = { version = "1.5", optional = true }
[features]
save-res = []