diff options
| author | Alejandro Soto <alejandro@34project.org> | 2021-12-27 00:44:23 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2021-12-28 19:43:44 -0600 |
| commit | a3212a0ba07da7bdae9e17637fbc237e2ae01c08 (patch) | |
| tree | 00be583beba0f321ebeea3af21582ce927943b44 /src/lib.rs | |
| parent | 311b2a40213aa48131a189f99dc4258d354c0c78 (diff) | |
Redesign the API around a user-provided main loop
This is basically a full library rewrite.
Diffstat (limited to '')
| -rw-r--r-- | src/lib.rs | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -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"); |
