Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Move to boinkor-net github org #215

Merged
merged 5 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "CI/benchmark"
on:
workflow_call:

jobs:
cargo_bench:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
needs: rust_tests
steps:
- uses: actions/checkout@v3.5.2
- uses: dtolnay/rust-toolchain@stable
- run: "cargo bench"
51 changes: 0 additions & 51 deletions .github/workflows/tests.yml

This file was deleted.

5 changes: 5 additions & 0 deletions governor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

### Changed

* The governor repo now lives in the `boinkor-net` github
organization. No ownership has changed (@antifuchs still manages
this org), but this makes it easier to securely manage the CI and
release setup.

* The `.per_second` constructor for `Quota` now constructs a quota
that ensures all rate-limiting calls succeed when given values in
excess of 1 billion (previously, this would result in rate limiters
Expand Down
4 changes: 2 additions & 2 deletions governor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.6.0"
authors = ["Andreas Fuchs <asf@boinkor.net>"]
edition = "2018"
license = "MIT"
homepage = "https://github.com/antifuchs/governor"
repository = "https://github.com/antifuchs/governor.git"
homepage = "https://github.com/boinkor-net/governor"
repository = "https://github.com/boinkor-net/governor.git"
readme = "README.md"
description = "A rate-limiting implementation in Rust"
documentation = "https://docs.rs/governor"
Expand Down
2 changes: 1 addition & 1 deletion governor/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Build status](https://github.com/antifuchs/governor/actions/workflows/ci_push.yml/badge.svg?branch=master) [![codecov](https://codecov.io/gh/antifuchs/governor/branch/master/graph/badge.svg)](https://codecov.io/gh/antifuchs/governor) [![Docs](https://docs.rs/governor/badge.svg)](https://docs.rs/governor/) [![crates.io](https://img.shields.io/crates/v/governor.svg)](https://crates.io/crates/governor)
![Build status](https://github.com/boinkor-net/governor/actions/workflows/ci_push.yml/badge.svg?branch=master) [![codecov](https://codecov.io/gh/boinkor-net/governor/branch/master/graph/badge.svg)](https://codecov.io/gh/boinkor-net/governor) [![Docs](https://docs.rs/governor/badge.svg)](https://docs.rs/governor/) [![crates.io](https://img.shields.io/crates/v/governor.svg)](https://crates.io/crates/governor)

# governor - a library for regulating the flow of data

Expand Down
2 changes: 0 additions & 2 deletions governor/src/state/direct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ where

#[cfg(feature = "std")]
mod future;
#[cfg(feature = "std")]
pub use future::*;

#[cfg(feature = "std")]
mod sinks;
Expand Down