Support Azure blob storage in a similar fashion to S3. (#907)

This commit is contained in:
tamwuff
2024-11-10 02:45:50 -05:00
committed by GitHub
parent 9742149ce8
commit 9b4f5e8c75
16 changed files with 707 additions and 57 deletions

View File

@@ -5,7 +5,7 @@ edition = "2021"
resolver = "2"
[features]
default = ["sqlite", "postgres", "mysql", "rocks", "elastic", "s3", "redis", "foundationdb"]
default = ["sqlite", "postgres", "mysql", "rocks", "elastic", "s3", "redis", "azure", "foundationdb"]
#default = ["sqlite", "postgres", "mysql", "rocks", "elastic", "s3", "redis", "foundationdb"]
sqlite = ["store/sqlite"]
foundationdb = ["store/foundation", "common/foundation"]
@@ -15,6 +15,7 @@ rocks = ["store/rocks"]
elastic = ["store/elastic"]
s3 = ["store/s3"]
redis = ["store/redis"]
azure = ["store/azure"]
[dev-dependencies]
store = { path = "../crates/store", features = ["test_mode", "enterprise"] }