-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(code): Namespace crates under
informalsystems-
prefix, add `b…
…ft` suffix (#696) * chore(code): Namespace crates under `informalsystems-` prefix, add `bft` suffix Rename all crates to include a `informalsystems-` prefix and a `bft` suffix to avoid clashes with the existing `malachite` crate. So `malachite-consensus` would become `informalsystems-malachitebft-consensus`. It is a mouthful but that can be alleviated in code by specifying a package alias in `Cargo.toml`: ```toml [dependencies] malachitebft-consensus = { version = "0.1.0", package = "informalsystems-malachitebft-consensus" } ``` which allows import of the form: ```rust use malachitebft_consensus::foobar::* ``` instead of ```rust use informalsystems_malachitebft_consensus::foobar::* ``` * Format and cleanup all Cargo.toml files * Fix CI * Remove unused `node` crate * Do not publish signing and test-cli crates * Add note in starknet crates
- Loading branch information
Showing
202 changed files
with
1,733 additions
and
1,698 deletions.
There are no files selected for viewing
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
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
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
Oops, something went wrong.