ailake-store 0.0.13

Unified object storage abstraction (S3, GCS, Azure, local) for AI-Lake
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "ailake-store"
version = "0.0.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified object storage abstraction (S3, GCS, Azure, local) for AI-Lake"
readme = false
keywords = [
    "s3",
    "gcs",
    "azure",
    "object-storage",
    "lakehouse",
]
categories = [
    "filesystem",
    "database",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ThiagoLange/ai-lakehouse"

[features]
default = ["store-local"]
store-azure = ["object_store/azure"]
store-gcs = ["object_store/gcp"]
store-local = []
store-s3 = ["object_store/aws"]

[lib]
name = "ailake_store"
path = "src/lib.rs"

[dependencies.ailake-core]
version = "0.0.13"

[dependencies.async-trait]
version = "0.1"

[dependencies.bytes]
version = "1"

[dependencies.futures]
version = "0.3"

[dependencies.object_store]
version = "0.10"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "io-util",
    "fs",
    "sync",
    "time",
    "macros",
]

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "io-util",
    "fs",
    "sync",
    "time",
    "macros",
]