2021-08-05 19:20:49 +00:00
|
|
|
[package]
|
|
|
|
name = "iox_object_store"
|
|
|
|
version = "0.1.0"
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-08-05 19:20:49 +00:00
|
|
|
description = "IOx-specific semantics wrapping the general-purpose object store crate"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bytes = "1.0"
|
2021-09-01 18:27:00 +00:00
|
|
|
chrono = "0.4"
|
2021-08-05 19:20:49 +00:00
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
futures = "0.3"
|
|
|
|
object_store = { path = "../object_store" }
|
2021-08-26 13:11:21 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-08-12 16:52:39 +00:00
|
|
|
snafu = "0.6"
|
2021-11-01 11:21:59 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros", "time"] }
|
2021-08-05 19:20:49 +00:00
|
|
|
tokio-stream = "0.1"
|
2021-08-12 16:52:39 +00:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2021-11-05 18:51:46 +00:00
|
|
|
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
|
|
test_helpers = { path = "../test_helpers" }
|