diff --git a/chorus_lib/src/transport.rs b/chorus_lib/src/transport.rs index f040d9c..1ddfc70 100644 --- a/chorus_lib/src/transport.rs +++ b/chorus_lib/src/transport.rs @@ -11,9 +11,9 @@ use std::marker::PhantomData; #[derive(Clone)] pub struct TransportConfig { /// The information about locations - info: HashMap, + pub info: HashMap, /// The information about the target choreography - target_info: (Target, TargetInfo), + pub target_info: (Target, TargetInfo), /// The struct is parametrized by the location set (`L`). location_set: PhantomData, }