influxdb/iox_catalog/Cargo.toml

34 lines
1.1 KiB
TOML
Raw Normal View History

2022-01-11 17:51:56 +00:00
[package]
name = "iox_catalog"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
2022-01-11 17:51:56 +00:00
[dependencies] # In alphabetical order
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" }
log = "0.4"
metric = { version = "0.1.0", path = "../metric" }
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"
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] }
sqlx-hotswap-pool = { path = "../sqlx-hotswap-pool" }
thiserror = "1.0.37"
tokio = { version = "1.22", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
uuid = { version = "1", features = ["v4"] }
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies] # In alphabetical order
assert_matches = "1.5.0"
dotenvy = "0.15.6"
mutable_batch_lp = { path = "../mutable_batch_lp" }
paste = "1.0.9"
pretty_assertions = "1.3.0"
rand = "0.8"
tempfile = "3"
test_helpers = { path = "../test_helpers" }