RPM build fix (reverted CI changes which will need to be un-reverted or made conditional) and vendor Rust dependencies to make builds much faster in any CI system.
This commit is contained in:
12
zeroidc/vendor/hyper/src/rt.rs
vendored
Normal file
12
zeroidc/vendor/hyper/src/rt.rs
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
//! Runtime components
|
||||
//!
|
||||
//! By default, hyper includes the [tokio](https://tokio.rs) runtime.
|
||||
//!
|
||||
//! If the `runtime` feature is disabled, the types in this module can be used
|
||||
//! to plug in other runtimes.
|
||||
|
||||
/// An executor of futures.
|
||||
pub trait Executor<Fut> {
|
||||
/// Place the future into the executor to be run.
|
||||
fn execute(&self, fut: Fut);
|
||||
}
|
||||
Reference in New Issue
Block a user