-
Notifications
You must be signed in to change notification settings - Fork 272
Compression integration (draft) [JOLT-191] #1134
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
base: main
Are you sure you want to change the base?
Changes from 7 commits
5717045
545301e
1965545
0b9169a
a49ebfa
3e632f8
985e303
2eb13d3
b31cb94
3fd5217
0da7b59
37f52ca
148b6f8
3e65b6a
fac5c10
b83d918
f16a87b
a485f03
62bdecd
7f7721b
e5a21c7
01be1c4
dbee230
2496a42
0b3ab94
c61027e
82f934e
608c8f9
7b85f15
1ff23b7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -127,14 +127,15 @@ ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist | |||||||||||||||||||||||||||
| ark-ec = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout" } | ||||||||||||||||||||||||||||
| ark-serialize = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout" } | ||||||||||||||||||||||||||||
| allocative = { git = "https://github.com/facebookexperimental/allocative", rev = "85b773d85d526d068ce94724ff7a7b81203fc95e" } | ||||||||||||||||||||||||||||
| dory-pcs = { git = "https://github.com/a16z/dory", branch = "dev/twist-shout" } | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
| [workspace.metadata.cargo-machete] | ||||||||||||||||||||||||||||
| ignored = ["jolt-sdk"] | ||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||
| [workspace.dependencies] | ||||||||||||||||||||||||||||
| # Cryptography and Math | ||||||||||||||||||||||||||||
| ark-bn254 = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | ||||||||||||||||||||||||||||
| ark-grumpkin = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | ||||||||||||||||||||||||||||
| ark-grumpkin = { git = "https://github.com/JuI3s/arkworks-algebra", branch = "compression", default-features = false } | ||||||||||||||||||||||||||||
| ark-ec = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | ||||||||||||||||||||||||||||
| ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
| # Cryptography and Math | |
| ark-bn254 = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | |
| ark-grumpkin = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | |
| ark-grumpkin = { git = "https://github.com/JuI3s/arkworks-algebra", branch = "compression", default-features = false } | |
| ark-ec = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | |
| ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | |
| # Cryptography and Math | |
| ark-bn254 = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | |
| ark-grumpkin = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | |
| ark-ec = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | |
| ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false } | |
Spotted by Graphite Agent
Is this helpful? React 👍 or 👎 to let us know.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistency between Cargo.toml and Cargo.lock for
dory-pcsdependency. Cargo.toml adds a patch pointing toa16z/dorybranchdev/twist-shout, but Cargo.lock shows the dependency is resolved fromJuI3s/dorybranchcompression-integration. This mismatch will cause build issues and dependency resolution failures.Update Cargo.toml to match the actual dependency being used:
Spotted by Graphite Agent

Is this helpful? React 👍 or 👎 to let us know.