Skip to content

Commit

Permalink
chore: update fusio deps
Browse files Browse the repository at this point in the history
  • Loading branch information
crwen committed Jan 16, 2025
1 parent e71d3e2 commit 4391a12
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ crc32fast = "1"
crossbeam-skiplist = "0.1"
datafusion = { version = "42.2.0", optional = true }
flume = { version = "0.11", features = ["async"] }
fusio = { version = "0.3.4", features = [
fusio = { git = "https://github.com/tonbo-io/fusio", rev = "c0db1654de692dfdf2f17efd5a0492b99cb026fc", version = "0.3.4", package = "fusio", features = [
"dyn",
"fs",
] }
fusio-dispatch = "0.3.4"
fusio-log = {git = "https://github.com/tonbo-io/fusio-log", default-features = false, features = ["bytes"]}
fusio-parquet = "0.3.4"
fusio-dispatch = { git = "https://github.com/tonbo-io/fusio", rev = "c0db1654de692dfdf2f17efd5a0492b99cb026fc", version = "0.3.4", package = "fusio-dispatch" }
fusio-log = { git = "https://github.com/tonbo-io/fusio-log", default-features = false, features = ["bytes"] }
fusio-parquet = { git = "https://github.com/tonbo-io/fusio", rev = "c0db1654de692dfdf2f17efd5a0492b99cb026fc", version = "0.3.4", package = "fusio-parquet" }
futures-core = "0.3"
futures-io = "0.3"
futures-util = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ crate-type = ["cdylib"]
[workspace]

[dependencies]
fusio = { version = "0.3.4", features = [
fusio = { git = "https://github.com/tonbo-io/fusio", rev = "c0db1654de692dfdf2f17efd5a0492b99cb026fc", version = "0.3.4", package = "fusio", features = [
"aws",
"tokio",
] }
fusio-dispatch = { version = "0.3.4", features = [
fusio-dispatch = { git = "https://github.com/tonbo-io/fusio", rev = "c0db1654de692dfdf2f17efd5a0492b99cb026fc", version = "0.3.4", package = "fusio-dispatch", features = [
"aws",
"tokio",
] }
Expand Down
2 changes: 1 addition & 1 deletion src/wal/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub enum RecoverError<E: std::error::Error> {
Logger(#[from] LogError),
}

#[cfg(test)]
#[cfg(all(test, feature = "tokio"))]
mod tests {
use std::{pin::pin, sync::Arc};

Expand Down

0 comments on commit 4391a12

Please sign in to comment.