Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
129 changes: 55 additions & 74 deletions fluss-rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion fluss-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ members = ["crates/fluss", "crates/fluss-test-cluster", "crates/examples", "bind
fluss = { package = "fluss-rs", version = "1.0.0", path = "crates/fluss", features = ["storage-all"] }
tokio = { version = "1.44.2", features = ["full"] }
clap = { version = "4.5.37", features = ["derive"] }
arrow = { version = "57.0.0", features = ["ipc_compression", "ffi"] }
arrow = { version = "59.0.0", features = ["ipc_compression", "ffi"] }
bigdecimal = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
10 changes: 5 additions & 5 deletions fluss-rust/bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ name = "fluss"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.26.0", features = ["extension-module", "generate-import-lib"] }
pyo3 = { version = "0.28.0", features = ["extension-module", "generate-import-lib"] }
fluss = { workspace = true, features = ["storage-all"] }
tokio = { workspace = true }
arrow = { workspace = true }
arrow-pyarrow = "57.0.0"
arrow-schema = "57.0.0"
arrow-array = "57.0.0"
pyo3-async-runtimes = { version = "0.26.0", features = ["tokio-runtime"] }
arrow-pyarrow = "59.0.0"
arrow-schema = "59.0.0"
arrow-array = "59.0.0"
pyo3-async-runtimes = { version = "0.28.0", features = ["tokio-runtime"] }
jiff = { workspace = true }
bigdecimal = "0.4"
indexmap = "2"
2 changes: 1 addition & 1 deletion fluss-rust/bindings/python/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use crate::*;
use pyo3::types::PyDict;

/// Configuration for Fluss client
#[pyclass]
#[pyclass(from_py_object)]
#[derive(Clone)]
pub struct Config {
inner: fcore::config::Config,
Expand Down
2 changes: 1 addition & 1 deletion fluss-rust/bindings/python/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use pyo3::prelude::*;
const CLIENT_ERROR_CODE: i32 = -2;

/// Fluss errors
#[pyclass(extends=PyException)]
#[pyclass(extends=PyException, from_py_object)]
#[derive(Debug, Clone)]
pub struct FlussError {
#[pyo3(get)]
Expand Down
Loading
Loading