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
|
|
|
|
async-trait = "0.1.42"
|
|
|
|
futures = "0.3"
|
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-01-12 23:22:45 +00:00
|
|
|
snafu = "0.7"
|
2022-01-19 19:13:02 +00:00
|
|
|
sqlx = { version = "0.5", features = [ "runtime-tokio-native-tls" , "postgres", "uuid" ] }
|
2022-01-27 15:14:42 +00:00
|
|
|
tokio = { version = "1.13", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
|
2022-01-13 22:10:26 +00:00
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2022-01-16 23:23:03 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-01-19 19:13:02 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2022-01-27 20:55:18 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
|
|
|
schema = { path = "../schema" }
|
2022-01-13 22:10:26 +00:00
|
|
|
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
|
|
dotenv = "0.15.0"
|
2022-01-27 20:55:18 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
|
|
paste = "1.0.6"
|
|
|
|
pretty_assertions = "1.0.0"
|
2022-02-08 13:38:33 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2022-01-27 20:55:18 +00:00
|
|
|
|
|
|
|
[features]
|