You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
This will need to be modified to accomadate the new subprojects as they are created. Some hints for how the end result could look like are the rand crate where it has multiple subprojects and itself is a crate.
The text was updated successfully, but these errors were encountered:
I was curious to pick up the hyperledger-archives/ursa-wrapper-go#8 issue. But the go wrapper requires workspace package feature to be enabled. The default build does not include ffi wrappers in it. Rust stable release currently does not have an option to enable package features.
Here's what I did (ref: https://github.com/arsulegai/ursa/tree/fix-path)
Step 1: Introduce a feature similar to ursa_sharing to enable cl_native and create the required .so file.
Step 2: Step 1 ends up in the conflict that the same name ursa is in both Cargo.toml and libursa/Cargo.toml.
I was planning to rename the Cargo.toml's name from usa to hyperledger-ursa. Any suggestions/preferences?
The top-level Ursa project file and folder structure will look like the following:
ursa
|
ursa_circuits
ursa_core
ursa_encryption
ursa_dkg
ursa_keyagreement
ursa_sharing
ursa_shortgroupsignatures
ursa_signatures
...
src
Cargo.toml
Cargo.lock
CHANGELOG
CODEOWNERS
CONTRIBUTING
LICENSE
README.md
RELEASES.md
SECURITY.md
rustfmt.toml
...
The point of the top level project is to
The current
Cargo.toml
file only contains the following:This will need to be modified to accomadate the new subprojects as they are created. Some hints for how the end result could look like are the rand crate where it has multiple subprojects and itself is a crate.
The text was updated successfully, but these errors were encountered: