Skip to content
New issue

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

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

Already on GitHub? # to your account

deps: ffi: update ffi #8728

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
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: 1 addition & 1 deletion extern/filecoin-ffi
Submodule filecoin-ffi updated 60 files
+1 −8 .circleci/config.yml
+0 −4 Makefile
+0 −7 README.md
+38 −78 bls.go
+14 −14 bls_test.go
+0 −3 build.sh
+61 −0 cgo/bls.go
+54 −0 cgo/const.go
+5 −5 cgo/errors.go
+62 −0 cgo/fvm.go
+275 −0 cgo/helpers.go
+66 −0 cgo/helpers_test.go
+1 −2 cgo/libs.go
+383 −0 cgo/proofs.go
+665 −0 cgo/types.go
+20 −0 cgo/util.go
+2 −1 cgoleakdetect/runner.go
+62 −110 distributed.go
+0 −50 filcrypto.yml
+57 −63 fvm.go
+0 −6,182 generated/cgo_helpers.go
+0 −9 generated/cgo_helpers.h
+0 −87 generated/const.go
+0 −1,362 generated/generated.go
+0 −542 generated/types.go
+3 −17 go.mod
+7 −239 go.sum
+9 −0 headerstubs/stdbool.h
+1 −0 headerstubs/stddef.h
+5 −2 headerstubs/stdint.h
+2 −0 install-filcrypto
+277 −508 proofs.go
+19 −22 proofs_test.go
+414 −804 rust/Cargo.lock
+17 −15 rust/Cargo.toml
+0 −11 rust/build.rs
+0 −26 rust/cbindgen.toml
+1 −1 rust/rust-toolchain
+4 −0 rust/scripts/build-release.sh
+168 −287 rust/src/bls/api.rs
+0 −1 rust/src/bls/mod.rs
+0 −79 rust/src/bls/types.rs
+17 −8 rust/src/fvm/blockstore/cgo.rs
+21 −14 rust/src/fvm/cgo/error.rs
+0 −73 rust/src/fvm/cgo/mock.rs
+0 −8 rust/src/fvm/cgo/mod.rs
+11 −6 rust/src/fvm/externs.rs
+213 −294 rust/src/fvm/machine.rs
+2 −2 rust/src/fvm/mod.rs
+26 −86 rust/src/fvm/types.rs
+19 −0 rust/src/lib.rs
+1,557 −2,767 rust/src/proofs/api.rs
+29 −103 rust/src/proofs/helpers.rs
+219 −978 rust/src/proofs/types.rs
+52 −77 rust/src/util/api.rs
+229 −33 rust/src/util/types.rs
+77 −150 sector_update.go
+0 −7 tools.go
+8 −7 types.go
+9 −7 workflows.go