sim-table-remote 0.1.1

Remote directory adapter for SIM table operations over eval fabric.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Capability names used by remote-backed tables.

use sim_kernel::CapabilityName;

/// The capability gating remote tables (`table.remote`).
pub fn table_remote_capability() -> CapabilityName {
    CapabilityName::new("table.remote")
}

#[cfg(test)]
mod tests {
    use super::table_remote_capability;

    #[test]
    fn capability_token_is_stable() {
        assert_eq!(table_remote_capability().as_str(), "table.remote");
    }
}