2020-05-29 15:06:06 +00:00
|
|
|
[package]
|
2020-11-05 13:56:30 +00:00
|
|
|
name = "object_store"
|
2020-05-29 15:06:06 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2021-01-20 03:36:52 +00:00
|
|
|
async-trait = "0.1.42"
|
2021-02-04 23:56:02 +00:00
|
|
|
# Microsoft Azure Blob storage integration
|
|
|
|
# In order to support tokio 1.0 needed to pull in unreleased azure sdk
|
|
|
|
azure_core = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "5ecad7216e1f04c5ff41e7de4667f006664c8cca" }
|
|
|
|
azure_storage = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "5ecad7216e1f04c5ff41e7de4667f006664c8cca", default-features = false, features = ["table", "blob"] }
|
2021-01-29 21:11:55 +00:00
|
|
|
bytes = "1.0"
|
2021-01-03 17:26:20 +00:00
|
|
|
chrono = "0.4"
|
2021-02-04 23:56:02 +00:00
|
|
|
# Google Cloud Storage integration
|
|
|
|
cloud-storage = { version = "0.7.0" }
|
2021-01-04 21:58:15 +00:00
|
|
|
futures = "0.3.5"
|
|
|
|
itertools = "0.9.0"
|
2021-01-04 15:16:54 +00:00
|
|
|
percent-encoding = "2.1"
|
2021-02-04 23:56:02 +00:00
|
|
|
# rusoto crates are for Amazon S3 integration
|
2021-01-29 21:11:55 +00:00
|
|
|
rusoto_core = "0.46.0"
|
|
|
|
rusoto_credential = "0.46.0"
|
|
|
|
rusoto_s3 = "0.46.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
snafu = { version = "0.6.10", features = ["futures"] }
|
2021-02-11 12:12:57 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "fs"] }
|
2020-06-27 00:54:35 +00:00
|
|
|
# Filesystem integration
|
2021-02-17 16:48:31 +00:00
|
|
|
tokio-util = { version = "0.6.3", features = [ "io" ] }
|
2021-02-04 23:56:02 +00:00
|
|
|
reqwest = "0.11"
|
|
|
|
# Filesystem integration
|
2021-01-14 21:05:10 +00:00
|
|
|
walkdir = "2"
|
2021-02-17 16:48:31 +00:00
|
|
|
tempfile = "3.1.0"
|
2020-06-27 00:54:35 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2020-06-10 21:14:48 +00:00
|
|
|
dotenv = "0.15.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
tempfile = "3.1.0"
|
2021-02-17 16:48:31 +00:00
|
|
|
futures-test = "0.3.12"
|