forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove deprecated comments for markdown generation update README fix licence line in python files clean up .pyc file Rename Libra into Primary update cargo dependencies (except ed25519-dalek and rand) Tiny cleanups / wart-removal Removing env_logger from fastpay_core Removing log from fastpay_core Update version dependencies Also introduces a workaround to dalek-cryptography/ed25519-dalek#126 (see workspace Cargo.toml) Update license
- Loading branch information
0 parents
commit 20f3abf
Showing
50 changed files
with
8,985 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/target | ||
|
||
.DS_Store | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Emacs | ||
\#*\# | ||
.\#* | ||
|
||
# Python | ||
.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Code of Conduct | ||
|
||
Please see Libra's | ||
[Code of Conduct](https://developers.libra.org/docs/policies/code-of-conduct), | ||
which describes the expectations for interactions within the community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Contribution Guide | ||
|
||
Our goal is to make contributing to the Libra and Calibra projects easy and transparent. | ||
|
||
<blockquote class="block_note"> | ||
The repository Calibra Research is meant to share content related to the research projects of Calibra. | ||
</blockquote> | ||
|
||
## Contributing to Calibra Research | ||
|
||
To contribute, ensure that you have the latest version of the codebase. To clone the repository, run the following: | ||
```bash | ||
$ git clone https://github.com/calibra/research.git calibra-research | ||
$ cd calibra-research | ||
$ cargo build --all --all-targets | ||
$ cargo test | ||
``` | ||
|
||
## Coding Guidelines for Rust code | ||
|
||
For detailed guidance on how to contribute to the Rust code in the Calibra Research repository refer to [Coding Guidelines](https://developers.libra.org/docs/coding-guidelines). | ||
|
||
## Pull Requests | ||
|
||
Please refer to the documentation to determine the status of each project (e.g. actively developed vs. archived) before submitting a pull request. | ||
|
||
To submit your pull request: | ||
|
||
1. Fork Calibra's `research` repository and create your branch from `master`. | ||
2. If you have added code that should be tested, add unit tests. | ||
3. If you have made changes to APIs, update the relevant documentation, and build and test the developer site. | ||
4. Verify and ensure that the test suite passes. | ||
5. Make sure your code passes both linters. | ||
6. Complete the Contributor License Agreement (CLA), if you haven't already done so. | ||
7. Submit your pull request. | ||
|
||
## Contributor License Agreement | ||
|
||
For your pull requests to be accepted by any Libra and Calibra project, you will need to sign a CLA. You will need to do this only once to work on any Libra open source project. Individuals contributing on their own behalf can sign the [Individual CLA](https://github.com/libra/libra/blob/master/contributing/individual-cla.pdf). If you are contributing on behalf of your employer, please ask them to sign the [Corporate CLA](https://github.com/libra/libra/blob/master/contributing/corporate-cla.pdf). | ||
|
||
## Code of Conduct | ||
Please refer to the [Code of Conduct](https://github.com/libra/libra/blob/master/CODE_OF_CONDUCT.md) for guidelines on interacting with the community. | ||
|
||
## Issues | ||
|
||
Calibra uses [GitHub issues](https://github.com/calibra/research/issues) to track bugs. Please include necessary information and instructions to reproduce your issue. |
Oops, something went wrong.