diff --git a/Cargo.toml b/Cargo.toml index 95ddb3c..eeb51a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ resolver = "2" edition = "2021" license = "Apache-2.0" repository = "https://github.com/tonbo-io/fusio" +version = "0.3.4" [workspace.dependencies] bytes = { version = "1.7" } diff --git a/fusio-dispatch/Cargo.toml b/fusio-dispatch/Cargo.toml index 05df8a9..5fe9344 100644 --- a/fusio-dispatch/Cargo.toml +++ b/fusio-dispatch/Cargo.toml @@ -4,17 +4,17 @@ edition.workspace = true license.workspace = true name = "fusio-dispatch" repository.workspace = true -version = "0.2.2" +version.workspace = true [features] aws = ["fusio/aws"] default = [] monoio = ["fusio/monoio"] -opfs = ["fusio/opfs"] object_store = ["dep:fusio-object-store", "object_store/aws"] +opfs = ["fusio/opfs"] tokio = ["fusio/tokio"] [dependencies] -fusio = { version = "0.3.2", path = "../fusio" } -fusio-object-store = { version = "0.2.0", path = "../fusio-object-store", optional = true } +fusio = { version = "0.3.4", path = "../fusio" } +fusio-object-store = { version = "0.3.4", path = "../fusio-object-store", optional = true } object_store = { version = "0.11", optional = true } diff --git a/fusio-object-store/Cargo.toml b/fusio-object-store/Cargo.toml index d4e24b9..17d091e 100644 --- a/fusio-object-store/Cargo.toml +++ b/fusio-object-store/Cargo.toml @@ -4,11 +4,11 @@ edition.workspace = true license.workspace = true name = "fusio-object-store" repository.workspace = true -version = "0.2.2" +version.workspace = true [dependencies] async-stream = { version = "0.3" } -fusio = { version = "0.3.2", path = "../fusio", features = [ +fusio = { version = "0.3.4", path = "../fusio", features = [ "bytes", "dyn", "object_store", diff --git a/fusio-opendal/Cargo.toml b/fusio-opendal/Cargo.toml index 92b3750..995e5e7 100644 --- a/fusio-opendal/Cargo.toml +++ b/fusio-opendal/Cargo.toml @@ -4,10 +4,10 @@ edition.workspace = true license.workspace = true name = "fusio-opendal" repository.workspace = true -version = "0.1.0" +version.workspace = true [dependencies] -fusio = { version = "0.3.2", path = "../fusio", features = ["bytes"] } +fusio = { version = "0.3.4", path = "../fusio", features = ["bytes"] } futures-core = { version = "0.3" } futures-util = { version = "0.3" } opendal = { version = "0.50.1", default-features = false } diff --git a/fusio-parquet/Cargo.toml b/fusio-parquet/Cargo.toml index 3e609e7..3122264 100644 --- a/fusio-parquet/Cargo.toml +++ b/fusio-parquet/Cargo.toml @@ -4,17 +4,17 @@ edition.workspace = true license.workspace = true name = "fusio-parquet" repository.workspace = true -version = "0.2.2" +version.workspace = true [features] default = [] -web = ["fusio/opfs"] tokio = ["fusio/tokio"] +web = ["fusio/opfs"] [dependencies] bytes = { workspace = true } cfg-if = "1.0.0" -fusio = { version = "0.3.2", path = "../fusio", features = ["bytes", "dyn"] } +fusio = { version = "0.3.4", path = "../fusio", features = ["bytes", "dyn"] } futures = { version = "0.3" } parquet = { version = "53", default-features = false, features = [ "arrow", diff --git a/fusio/Cargo.toml b/fusio/Cargo.toml index f1eff6a..782a42b 100644 --- a/fusio/Cargo.toml +++ b/fusio/Cargo.toml @@ -5,7 +5,7 @@ license.workspace = true name = "fusio" readme = "../README.md" repository.workspace = true -version = "0.3.3" +version.workspace = true [package.metadata.docs.rs] all-features = true @@ -69,7 +69,7 @@ cfg-if = "1.0.0" chrono = { version = "0.4", optional = true, default-features = false, features = [ "now", "std", - "wasmbind" + "wasmbind", ] } futures-core = { version = "0.3" } futures-util = { version = "0.3" }