2022-01-11 17:51:56 +00:00
|
|
|
[package]
|
|
|
|
name = "iox_catalog"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-01-11 17:51:56 +00:00
|
|
|
|
|
|
|
[dependencies] # In alphabetical order
|
2022-10-19 09:40:26 +00:00
|
|
|
async-trait = "0.1.58"
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-01-11 17:51:56 +00:00
|
|
|
futures = "0.3"
|
2022-05-05 19:29:24 +00:00
|
|
|
iox_time = { version = "0.1.0", path = "../iox_time" }
|
2022-09-19 22:56:05 +00:00
|
|
|
log = "0.4"
|
2022-02-23 10:39:04 +00:00
|
|
|
metric = { version = "0.1.0", path = "../metric" }
|
2022-02-15 16:18:36 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
2022-01-11 17:51:56 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-01-12 23:22:45 +00:00
|
|
|
snafu = "0.7"
|
2022-06-17 10:28:28 +00:00
|
|
|
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] }
|
2022-02-15 16:18:36 +00:00
|
|
|
sqlx-hotswap-pool = { path = "../sqlx-hotswap-pool" }
|
2022-09-29 10:37:14 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-11-21 10:21:24 +00:00
|
|
|
tokio = { version = "1.22", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2022-02-15 16:18:36 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-01-13 22:10:26 +00:00
|
|
|
|
|
|
|
[dev-dependencies] # In alphabetical order
|
2022-05-05 20:02:16 +00:00
|
|
|
assert_matches = "1.5.0"
|
2022-10-18 07:06:40 +00:00
|
|
|
dotenvy = "0.15.6"
|
2022-01-27 20:55:18 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
2022-09-01 12:07:53 +00:00
|
|
|
paste = "1.0.9"
|
2022-09-01 10:20:26 +00:00
|
|
|
pretty_assertions = "1.3.0"
|
2022-02-17 14:08:25 +00:00
|
|
|
rand = "0.8"
|
2022-02-18 16:42:55 +00:00
|
|
|
tempfile = "3"
|
2022-02-08 13:38:33 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|