mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-21 15:30:40 +00:00
* feat: bump opendal to v0.54.0 Signed-off-by: Dennis Zhuang <killme2008@gmail.com> * chore: update cargo Signed-off-by: Dennis Zhuang <killme2008@gmail.com> --------- Signed-off-by: Dennis Zhuang <killme2008@gmail.com>
46 lines
989 B
TOML
46 lines
989 B
TOML
[package]
|
|
name = "object-store"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
services-memory = ["opendal/services-memory"]
|
|
|
|
[dependencies]
|
|
bytes.workspace = true
|
|
common-base.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-telemetry.workspace = true
|
|
futures.workspace = true
|
|
humantime-serde.workspace = true
|
|
lazy_static.workspace = true
|
|
md5 = "0.7"
|
|
moka = { workspace = true, features = ["future"] }
|
|
opendal = { version = "0.54", features = [
|
|
"layers-tracing",
|
|
"layers-prometheus",
|
|
"services-azblob",
|
|
"services-fs",
|
|
"services-gcs",
|
|
"services-http",
|
|
"services-oss",
|
|
"services-s3",
|
|
] }
|
|
prometheus.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
snafu.workspace = true
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0"
|
|
common-telemetry.workspace = true
|
|
common-test-util.workspace = true
|
|
tokio.workspace = true
|