-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#151 Created Bastion Utilities crate
Created Bastion Utilities Crate
- Loading branch information
Showing
8 changed files
with
107 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
members = [ | ||
"bastion", | ||
"bastion-executor", | ||
"bastion-utils", | ||
"lightproc" | ||
] | ||
|
||
|
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
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,19 @@ | ||
[package] | ||
name = "bastion-utils" | ||
version = "0.3.2" | ||
description = "Utilities for Bastion, the highly-available, fault-tolerant, async communication oriented executor" | ||
authors = [ | ||
"Mahmut Bulut <vertexclique@gmail.com>", | ||
"Patrice Billaut <pbillaut@pm.me>", | ||
] | ||
keywords = ["fault-tolerant", "runtime", "actor", "system"] | ||
categories = ["concurrency", "asynchronous"] | ||
homepage = "https://github.com/bastion-rs/bastion" | ||
repository = "https://github.com/bastion-rs/bastion" | ||
documentation = "https://docs.rs/bastion" | ||
license = "Apache-2.0/MIT" | ||
edition = "2018" | ||
|
||
[badges] | ||
travis-ci = { repository = "bastion-rs/bastion", branch = "master" } | ||
maintenance = { status = "actively-developed" } |
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,49 @@ | ||
# Bastion Utils | ||
|
||
<table align=left style='float: left; margin: 4px 10px 0px 0px; border: 1px solid #000000;'> | ||
<tr> | ||
<td>Latest Release</td> | ||
<td> | ||
<a href="https://crates.io/crates/bastion-utils"> | ||
<img alt="Crates.io" src="https://img.shields.io/crates/v/bastion-utils.svg?style=popout-square"> | ||
</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td>License</td> | ||
<td> | ||
<a href="https://github.com/bastion-rs/bastion/blob/master/LICENSE"> | ||
<img alt="Crates.io" src="https://img.shields.io/crates/l/bastion.svg?style=popout-square"> | ||
</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Build Status</td> | ||
<td> | ||
<a href="https://actions-badge.atrox.dev/bastion-rs/bastion/goto"> | ||
<img alt="Build Status" src="https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fbastion-rs%2Fbastion%2Fbadge&style=flat" /> | ||
</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Downloads</td> | ||
<td> | ||
<a href="https://crates.io/crates/lightproc"> | ||
<img alt="Crates.io" src="https://img.shields.io/crates/d/bastion-utils.svg?style=popout-square"> | ||
</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Discord</td> | ||
<td> | ||
<a href="https://discord.gg/DqRqtRT"> | ||
<img alt="Discord Chat" src="https://img.shields.io/discord/628383521450360842.svg?logo=discord"> | ||
</a> | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
Utilities for Bastion, the highly-available, fault-tolerant, async communication oriented executor |
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,16 @@ | ||
//! Bastion Utilities | ||
//! | ||
//! Utilities for Bastion, the highly-available, fault-tolerant, async communication | ||
//! oriented executor. | ||
//! | ||
#![doc( | ||
html_logo_url = "https://raw.githubusercontent.com/bastion-rs/bastion/master/img/bastion-logo.png" | ||
)] | ||
// Discarded lints | ||
#![allow(clippy::if_same_then_else)] | ||
// Force missing implementations | ||
#![warn(missing_docs)] | ||
#![warn(missing_debug_implementations)] | ||
|
||
pub mod math; |
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