diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-01 09:20:36 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-01 09:20:36 +0100 |
commit | 95685ba9a75df0f00458b8260fb87bae82e0dfa3 (patch) | |
tree | 968aa0790db571fd6f82820058f5bcdc835433dd /src/main.rs | |
parent | 0a76db1b8cf6a7d7180d35fbfae82e135e7fbf59 (diff) | |
download | aerogramme-95685ba9a75df0f00458b8260fb87bae82e0dfa3.tar.gz aerogramme-95685ba9a75df0f00458b8260fb87bae82e0dfa3.zip |
a first naive version of the storage interface
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 2f6d512..7e1626d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,7 @@ +#![feature(async_fn_in_trait)] +#![feature(return_position_impl_trait_in_trait)] +// should be stabilized soon https://github.com/rust-lang/rust/pull/115822 + mod bayou; mod config; mod cryptoblob; |