rencfs 0.14.11

WARNING! UNDER ACTIVE DEVELOPMENT. An encrypted file system that is mounted with FUSE on Linux. It can be used to create encrypted directories.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::future::Future;
use tokio::runtime::Handle;
use tokio::task;

pub fn call_async<F>(f: F) -> F::Output
where
    F: Future,
{
    task::block_in_place(move || Handle::current().block_on(f))
}