Changeset - 40fcfdd81ceb
[Not reviewed]
2 2 2
MH - 3 years ago 2022-03-31 16:28:54
contact@maxhenger.nl
cleaned up dependencies
4 files changed with 2 insertions and 19 deletions:
0 comments (0 inline, 0 general)
Cargo.toml
Show inline comments
 
@@ -6,32 +6,15 @@ authors = [
 
	"Christopher Esterhuyse <esterhuy@cwi.nl>",
 
	"Hans-Dieter Hiep <hdh@cwi.nl>"
 
]
 
edition = "2021"
 

	
 
[dependencies]
 
# convenience macros
 
maplit = "1.0.2"
 
derive_more = "0.99.2"
 

	
 
# runtime
 
bincode = "1.3.1"
 
serde = { version = "1.0.114", features = ["derive"] }
 
getrandom = "0.1.14" # tiny crate. used to guess controller-id
 

	
 
# network
 
mio = { version = "0.7.0", package = "mio", features = ["udp", "tcp", "os-poll"] }
 
socket2 = { version = "0.3.12", optional = true }
 

	
 
# protocol
 
backtrace = "0.3"
 
lazy_static = "1.4.0"
 

	
 
# socket ffi
 
# ffi
 
libc = { version = "^0.2", optional = true }
 
os_socketaddr = { version = "0.1.0", optional = true }
 

	
 
# randomness
 
rand = "0.8.4"
 
rand_pcg = "0.3.1"
 

	
 
[lib]
src/runtime2/mod.rs
Show inline comments
 
mod store;
 
mod runtime;
 
mod component;
 
mod communication;
 
mod scheduler;
 
mod std;
 
mod stdlib;
 
#[cfg(test)] mod tests;
 

	
 
pub use runtime::Runtime;
 
pub(crate) use scheduler::SchedulerCtx;
 
pub(crate) use communication::{
 
    PortId, PortKind, PortState,
src/runtime2/stdlib/internet.rs
Show inline comments
 
file renamed from src/runtime2/std/internet.rs to src/runtime2/stdlib/internet.rs
src/runtime2/stdlib/mod.rs
Show inline comments
 
file renamed from src/runtime2/std/mod.rs to src/runtime2/stdlib/mod.rs
0 comments (0 inline, 0 general)