Skip to content

Commit

Permalink
fix build after cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonHartley committed Mar 24, 2024
1 parent 879e19e commit 900f901
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coerce/src/actor/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ use futures::{Stream, StreamExt};
use std::any::Any;

use tokio::sync::oneshot::Sender;
use valuable::NamedField;

use valuable::{Fields, NamedField, NamedValues, StructDef, Structable, Valuable, Value, Visit};

use crate::actor::supervised::{ChildRef, Supervised};
use crate::actor::watch::watchers::Watchers;
Expand Down
6 changes: 6 additions & 0 deletions coerce/src/actor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,12 @@ use tokio_util::sync::CancellationToken;
use uuid::Uuid;
pub use refs::*;

#[cfg(feature = "remote")]
use crate::actor::message::Envelope;

Check warning on line 155 in coerce/src/actor/mod.rs

View workflow job for this annotation

GitHub Actions / Coerce Runtime Test

unused import: `crate::actor::message::Envelope`

#[cfg(feature = "remote")]
use crate::remote::{system::NodeId, RemoteActorRef};

Check warning on line 158 in coerce/src/actor/mod.rs

View workflow job for this annotation

GitHub Actions / Coerce Runtime Test

unused imports: `RemoteActorRef`, `system::NodeId`

pub mod blocking;

pub mod context;
Expand Down

0 comments on commit 900f901

Please sign in to comment.