forked from SpectralSequences/sseq
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
87 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
[package] | ||
name = "algebra" | ||
version = "0.1.0" | ||
authors = [ | ||
"Hood Chatham <[email protected]>", | ||
"Dexter Chua <[email protected]>", | ||
] | ||
edition = "2021" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
anyhow = "1.0.0" | ||
serde_json = { version = "1.0.0", optional = true } | ||
serde = { version = "1.0.0", features = ["derive"], optional = true } | ||
itertools = { version = "0.10.0", default-features = false, features = [ | ||
"use_alloc", | ||
] } | ||
nom = { version = "7.0.0", default-features = false, features = ["alloc"] } | ||
rustc-hash = "1.1.0" | ||
hashbrown = "0.11.0" | ||
auto_impl = "1.0.0" | ||
|
||
bivec = { path = "../bivec" } | ||
fp = { path = "../fp", default-features = false } | ||
once = { path = "../once" } | ||
|
||
rayon = { version = "1.5", optional = true } | ||
|
||
[dev-dependencies] | ||
rstest = "0.17.0" | ||
bencher = "0.1.5" | ||
expect-test = "1.1.0" | ||
|
||
[features] | ||
default = ["odd-primes", "json"] | ||
json = ["serde", "serde_json", "bivec/json", "fp/json"] | ||
odd-primes = ["fp/odd-primes"] | ||
concurrent = ["rayon", "fp/concurrent"] | ||
cache-multiplication = [] | ||
|
||
[[bench]] | ||
name = "milnor" | ||
harness = false | ||
[package] | ||
name = "algebra" | ||
version = "0.1.0" | ||
authors = [ | ||
"Hood Chatham <[email protected]>", | ||
"Dexter Chua <[email protected]>", | ||
] | ||
edition = "2021" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
bivec = { path = "../bivec" } | ||
fp = { path = "../fp", default-features = false } | ||
once = { path = "../once" } | ||
|
||
anyhow = "1.0.0" | ||
auto_impl = "1.0.0" | ||
hashbrown = "0.11.0" | ||
itertools = { version = "0.10.0", default-features = false, features = [ | ||
"use_alloc", | ||
] } | ||
nom = { version = "7.0.0", default-features = false, features = ["alloc"] } | ||
rustc-hash = "1.1.0" | ||
serde = { version = "1.0.0", features = ["derive"], optional = true } | ||
serde_json = { version = "1.0.0", optional = true } | ||
|
||
rayon = { version = "1.5", optional = true } | ||
|
||
[dev-dependencies] | ||
bencher = "0.1.5" | ||
expect-test = "1.1.0" | ||
rstest = "0.17.0" | ||
|
||
[features] | ||
default = ["odd-primes", "json"] | ||
cache-multiplication = [] | ||
concurrent = ["rayon", "fp/concurrent"] | ||
json = ["serde", "serde_json", "bivec/json", "fp/json"] | ||
odd-primes = ["fp/odd-primes"] | ||
|
||
[[bench]] | ||
name = "milnor" | ||
harness = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "bivec" | ||
version = "0.1.0" | ||
authors = ["Hood Chatham <[email protected]>", "Dexter Chua <[email protected]>"] | ||
authors = [ | ||
"Hood Chatham <[email protected]>", | ||
"Dexter Chua <[email protected]>", | ||
] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ name = "chart" | |
version = "0.1.0" | ||
authors = ["Dexter Chua <[email protected]>"] | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,36 +3,34 @@ name = "fp" | |
version = "0.1.0" | ||
authors = ["Dexter Chua <[email protected]>"] | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
serde_json = { version = "1.0.0", optional = true } | ||
serde = { version = "1.0.0", optional = true } | ||
itertools = { version = "0.10.0", default-features = false } | ||
cfg-if = "1.0.0" | ||
build_const = "0.2.2" | ||
byteorder = "1.4.3" | ||
cfg-if = "1.0.0" | ||
itertools = { version = "0.10.0", default-features = false } | ||
serde = { version = "1.0.0", optional = true } | ||
serde_json = { version = "1.0.0", optional = true } | ||
|
||
rayon = { version = "1.5", optional = true } | ||
|
||
[dev-dependencies] | ||
rand = "0.8.4" | ||
rstest = "0.17.0" | ||
criterion = { version = "0.3.5", features = ["html_reports"] } | ||
iai = "0.1.1" | ||
expect-test = "1.1.0" | ||
iai = "0.1.1" | ||
proptest = "1.2" | ||
rand = "0.8.4" | ||
rstest = "0.17.0" | ||
|
||
[build-dependencies] | ||
build_const = "0.2.2" | ||
|
||
[features] | ||
default = ["odd-primes"] | ||
|
||
odd-primes = [] | ||
json = ["serde_json", "serde"] | ||
concurrent = ["rayon"] | ||
json = ["serde_json", "serde"] | ||
odd-primes = [] | ||
|
||
[[bench]] | ||
name = "criterion" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
[package] | ||
name = "once" | ||
version = "0.1.0" | ||
authors = ["Hood Chatham <[email protected]>", "Dexter Chua <[email protected]>"] | ||
authors = [ | ||
"Hood Chatham <[email protected]>", | ||
"Dexter Chua <[email protected]>", | ||
] | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
bivec = { path = "../bivec"} | ||
bivec = { path = "../bivec" } | ||
|
||
rayon = { version = "1", optional = true } | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ name = "query" | |
version = "0.1.0" | ||
authors = ["Hood Chatham <[email protected]>", "Dexter Chua <[email protected]>"] | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,26 +3,25 @@ name = "sseq" | |
version = "0.1.0" | ||
authors = ["Dexter Chua <[email protected]>"] | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
fp = { path = "../fp/", default-features = false } | ||
algebra = { path = "../algebra/", default-features = false } | ||
bivec = { path = "../bivec/" } | ||
once = { path = "../once/" } | ||
chart = { path = "../chart/" } | ||
algebra = { path = "../algebra/", default-features = false } | ||
fp = { path = "../fp/", default-features = false } | ||
once = { path = "../once/" } | ||
|
||
serde_json = { version = "1.0.0", optional = true } | ||
serde = { version = "1.0.0", optional = true } | ||
rayon = { version = "1.5", optional = true } | ||
serde = { version = "1.0.0", optional = true } | ||
serde_json = { version = "1.0.0", optional = true } | ||
|
||
[dev-dependencies] | ||
expect-test = "1.1.0" | ||
rand = "0.8" | ||
|
||
[features] | ||
default = ["odd-primes"] | ||
odd-primes = ["fp/odd-primes"] | ||
json = ["serde_json", "serde"] | ||
concurrent = ["rayon"] | ||
json = ["serde_json", "serde"] | ||
odd-primes = ["fp/odd-primes"] |