1
0
forked from ROMEO/nexosim

CI: add --all-features and force check on dev

This commit is contained in:
Serge Barral
2024-04-26 13:26:49 +02:00
parent 97b173a081
commit 9956c4fa3f
3 changed files with 10 additions and 9 deletions

View File

@ -9,7 +9,7 @@ use serde::de::DeserializeOwned;
use serde::Serialize;
use crate::ports::{EventSinkStream, EventSource, QuerySource, ReplyReceiver};
use crate::time::{Action, ActionKey};
use crate::simulation::{Action, ActionKey};
/// A registry that holds all sources and sinks meant to be accessed through
/// remote procedure calls.

View File

@ -1,4 +1,5 @@
use crate::time::{ActionKey, MonotonicTime};
use crate::simulation::ActionKey;
use crate::time::MonotonicTime;
use crate::util::indexed_priority_queue::{IndexedPriorityQueue, InsertKey};
pub(crate) type KeyRegistryId = InsertKey;