2022-01-11 17:51:56 +00:00
|
|
|
[package]
|
|
|
|
name = "iox_catalog"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies] # In alphabetical order
|
2022-06-03 09:10:40 +00:00
|
|
|
async-trait = "0.1.56"
|
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-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-03-03 11:04:11 +00:00
|
|
|
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] }
|
2022-02-15 16:18:36 +00:00
|
|
|
sqlx-hotswap-pool = { path = "../sqlx-hotswap-pool" }
|
2022-06-06 14:15:12 +00:00
|
|
|
tokio = { version = "1.19", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
|
2022-01-19 19:13:02 +00:00
|
|
|
uuid = { version = "0.8", 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-01-13 22:10:26 +00:00
|
|
|
dotenv = "0.15.0"
|
2022-01-27 20:55:18 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
2022-03-28 08:44:01 +00:00
|
|
|
paste = "1.0.7"
|
2022-04-04 10:53:31 +00:00
|
|
|
pretty_assertions = "1.2.1"
|
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" }
|