influxdb/iox_catalog/Cargo.toml

28 lines
902 B
TOML
Raw Normal View History

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"
sqlx = { version = "0.5", features = [ "runtime-tokio-native-tls" , "postgres", "uuid" ] }
tokio = { version = "1.13", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
workspace-hack = { path = "../workspace-hack"}
uuid = { version = "0.8", features = ["v4"] }
mutable_batch = { path = "../mutable_batch" }
schema = { path = "../schema" }
[dev-dependencies] # In alphabetical order
dotenv = "0.15.0"
mutable_batch_lp = { path = "../mutable_batch_lp" }
paste = "1.0.6"
pretty_assertions = "1.0.0"
test_helpers = { path = "../test_helpers" }
[features]