temporalio-sdk-core 0.4.0

Library for building new Temporal SDKs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(missing_docs)]

// Re-export unit test helpers (cfg(test) only)
#[cfg(test)]
pub use unit_helpers::*;

#[cfg(any(feature = "test-utilities", test))]
pub use integ_helpers::*;
#[cfg(any(feature = "test-utilities", test))]
pub use test_utils::*;

#[cfg(any(feature = "test-utilities", test))]
mod integ_helpers;
#[cfg(any(feature = "test-utilities", test))]
mod test_utils;
#[cfg(test)]
mod unit_helpers;