Skip to content
Merged
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
4 changes: 1 addition & 3 deletions rivetkit-rust/packages/rivetkit-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,16 +140,14 @@
};
pub use actor::state::RequestSaveOpts;
pub use actor::task::{
ActionDispatchResult, ActorTask, DispatchCommand, HttpDispatchResult, LifecycleCommand,

Check warning on line 143 in rivetkit-rust/packages/rivetkit-core/src/lib.rs

View workflow job for this annotation

GitHub Actions / Rustfmt

Diff in /home/runner/work/rivet/rivet/rivetkit-rust/packages/rivetkit-core/src/lib.rs

Check warning on line 143 in rivetkit-rust/packages/rivetkit-core/src/lib.rs

View workflow job for this annotation

GitHub Actions / Rustfmt

Diff in /home/runner/work/rivet/rivet/rivetkit-rust/packages/rivetkit-core/src/lib.rs
LifecycleEvent, LifecycleState,
};
pub use rivet_envoy_client::config::{
HTTP_BODY_STREAM_CHANNEL_CAPACITY, HttpRequestBodyStream, ResponseChunk,
};
pub use rivet_envoy_client::config::ResponseChunk;
pub use actor::task_types::ShutdownKind;
pub use actor::work_registry::{ActorWorkKind, ActorWorkPolicy};
pub use error::ActorLifecycle;
pub use inspector::{Inspector, InspectorSnapshot};

Check warning on line 150 in rivetkit-rust/packages/rivetkit-core/src/lib.rs

View workflow job for this annotation

GitHub Actions / Rustfmt

Diff in /home/runner/work/rivet/rivet/rivetkit-rust/packages/rivetkit-core/src/lib.rs

Check warning on line 150 in rivetkit-rust/packages/rivetkit-core/src/lib.rs

View workflow job for this annotation

GitHub Actions / Rustfmt

Diff in /home/runner/work/rivet/rivet/rivetkit-rust/packages/rivetkit-core/src/lib.rs
pub use registry::{CoreRegistry, EngineSpawnMode, ServeConfig};
pub use runtime::{RuntimeBoxFuture, RuntimeSpawner, boxed_runtime_future};
pub use serverless::{CoreServerlessRuntime, ServerlessRequest, ServerlessResponse};
Expand Down
Loading