mirror of
https://github.com/logos-storage/logos-storage-proofs.git
synced 2026-01-02 05:23:07 +00:00
* adding rmpv crate * plumb in msgpack * setting up mpack basics * setting up mpack basics * setting up mpack basics * setting up mpack basics * updates * chunks * chunks * chunks * add mpack proof func * add mpack proof func - tests infra * add mpack proof func - tests infra remove * add mpack proof func - split mpack * rework funcs * rework funcs * rework funcs * rework funcs * rework funcs * rework funcs * refactor * refactor * refactor * refactor * refactor * refactor * refactor * refactor * refactor - read orig for testing * refactor - read orig for testing * setting up tests * setting up tests * setting up tests * setting up tests * setting rest of data * setting rest of data * setting rest of data * setting rest of data * re-add original prove for comparison * re-add original prove for comparison * re-add original prove for comparison * cleanup * refactor * refactor * pass tests * initial setup to build as a nim package * initial setup * update build setup * update build setup * update build setup * add nim ffi and genffi build task * add nim ffi and genffi build task * add nim ffi and genffi build task * update init to remove redundant pointers * update init to remove redundant pointers * update init to remove redundant pointers * update init to remove redundant pointers * save mpack * save mpack * update ffi * update ffi * add example ffi test * add example ffi test * updates * fix tests * adding git ignore * rename * run testament * fix stuffs * fix stuffs * fix stuffs * update build * update build
45 lines
1.3 KiB
TOML
45 lines
1.3 KiB
TOML
[package]
|
|
name = "codex-storage-proofs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = 2
|
|
|
|
[lib]
|
|
crate-type = [
|
|
"staticlib", # Ensure it gets compiled as a (static) C library
|
|
# "cdylib", # If you want a shared/dynamic C library (advanced)
|
|
"lib", # For downstream Rust dependents: `examples/`, `tests/` etc.
|
|
]
|
|
|
|
[dependencies]
|
|
ark-bn254 = { version = "0.3.0" }
|
|
ark-ec = { version = "0.3.0", default-features = false, features = [
|
|
"parallel",
|
|
] }
|
|
ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", rev = "765817f", features = [
|
|
"parallel",
|
|
] }
|
|
ark-std = { version = "0.3.0", default-features = false, features = [
|
|
"parallel",
|
|
] }
|
|
ark-serialize = { version = "0.3.0", default-features = false }
|
|
num-bigint = { version = "0.4", default-features = false, features = ["rand"] }
|
|
ark-circom = { git = "https://github.com/gakonst/ark-circom.git", rev = "35ce5a9", features = [
|
|
"circom-2",
|
|
] }
|
|
ark-ff = { version = "0.3.0", features = ["std"] }
|
|
ruint = { version = "1.7.0", features = ["serde", "num-bigint", "ark-ff"] }
|
|
once_cell = "1.17.1"
|
|
serde = "1.0.156"
|
|
serde_json = "1.0.94"
|
|
num-traits = "0.2.15"
|
|
ark-relations = { version = "0.4.0", features = ["std", "tracing-subscriber"] }
|
|
rs-poseidon = {git = "https://github.com/status-im/rs-poseidon" }
|
|
rmpv = "1.0.1"
|