[package] name = "object_store-fork" version = "0.5.0" edition = "2021" license = "MIT/Apache-2.0" readme = "README.md" description = "A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, Azure Blob Storage and local files." repository = "https://github.com/mxnkarou/object_store" [package.metadata.docs.rs] all-features = true [dependencies] # In alphabetical order async-trait = "0.1.53" bytes = "1.0" chrono = { version = "0.4", default-features = false, features = ["clock"] } futures = "0.3" itertools = "0.10.1" parking_lot = { version = "0.12" } percent-encoding = "2.1" snafu = "0.7" tokio = { version = "1.18", features = ["sync", "macros", "parking_lot", "rt-multi-thread", "time", "io-util"] } tracing = { version = "0.1" } url = "2.2" walkdir = "2" # Cloud storage support base64 = { version = "0.13", default-features = false, optional = true } quick-xml = { version = "0.24.0", features = ["serialize"], optional = true } serde = { version = "1.0", default-features = false, features = ["derive"], optional = true } serde_json = { version = "1.0", default-features = false, optional = true } rand = { version = "0.8", default-features = false, features = ["std", "std_rng"], optional = true } reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"], optional = true } ring = { version = "0.16", default-features = false, features = ["std"], optional = true } rustls-pemfile = { version = "1.0", default-features = false, optional = true } [features] cloud = ["serde", "serde_json", "quick-xml", "reqwest", "reqwest/json", "reqwest/stream", "chrono/serde", "base64", "rand", "ring"] azure = ["cloud"] gcp = ["cloud", "rustls-pemfile"] aws = ["cloud"] [dev-dependencies] # In alphabetical order dotenv = "0.15.0" tempfile = "3.1.0" futures-test = "0.3" rand = "0.8" hyper = { version = "0.14", features = ["server"] }