Skip to content

Commit

Permalink
chore: update tokio_uring
Browse files Browse the repository at this point in the history
  • Loading branch information
KKould committed Sep 30, 2024
1 parent 5e6f3a4 commit 55bc39c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fusio/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ pub enum FsOptions {
impl FsOptions {
pub fn parse(self) -> Result<Arc<dyn DynFs>, Error> {
match self {
#[cfg(all(feature = "fs", any(feature = "tokio", feature = "monoio")))]
#[cfg(all(
feature = "fs",
any(feature = "tokio", feature = "monoio", feature = "tokio-uring")
))]
FsOptions::Local => Ok(Arc::new(crate::local::LocalFs {})),
#[cfg(all(feature = "aws", feature = "object_store"))]
FsOptions::S3 {
Expand Down

0 comments on commit 55bc39c

Please sign in to comment.