influxdb/data_types/Cargo.toml

20 lines
591 B
TOML
Raw Normal View History

[package]
2022-05-05 19:29:24 +00:00
name = "data_types"
version = "0.1.0"
edition = "2021"
description = "Shared data types"
[dependencies]
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
observability_deps = { path = "../observability_deps" }
ordered-float = "3"
percent-encoding = "2.1.0"
schema = { path = "../schema" }
snafu = "0.7"
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "uuid"] }
uuid = { version = "1", features = ["v4"] }
workspace-hack = { path = "../workspace-hack"}
2022-05-04 21:04:29 +00:00
[dev-dependencies] # In alphabetical order
test_helpers = { path = "../test_helpers" }