From a3212a0ba07da7bdae9e17637fbc237e2ae01c08 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Mon, 27 Dec 2021 00:44:23 -0600 Subject: Redesign the API around a user-provided main loop This is basically a full library rewrite. --- src/lib.rs | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index d45da43..8e39749 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,15 +2,8 @@ //! //! `blown-fuse` -#![feature( - concat_idents, - arbitrary_self_types, - associated_type_bounds, - associated_type_defaults, - trait_alias, - try_trait_v2, - doc_cfg -)] +#![forbid(unsafe_code)] +#![feature(try_trait_v2, doc_cfg)] #[cfg(not(target_os = "linux"))] compile_error!("Unsupported OS"); -- cgit v1.2.3