Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit #1

Merged
merged 24 commits into from
Sep 16, 2020
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
Cargo.lock
20 changes: 20 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "linear-sumcheck"
version = "0.1.0"
authors = [
"Tom Shen <tomshen@berkeley.edu>"
]
edition = "2018"

[lib]
name = "linear_sumcheck"
path = "src/lib.rs"

[dependencies]
algebra = { git = "https://github.com/scipr-lab/zexe/", default-features = false, features=["bls12_377", "ed_on_bls12_381", "derive"] }
rand_core = { version = "0.5", default-features = false }
rand = "0.7.3"
blake2 = { version = "0.9", default-features = false }

[dev-dependencies]
ff-fft = { git = "https://github.com/scipr-lab/zexe/", default-features = false} # for unit testing
tsunrise marked this conversation as resolved.
Show resolved Hide resolved
Loading