2022-02-25 15:10:23 +00:00
|
|
|
[package]
|
2022-05-05 19:29:24 +00:00
|
|
|
name = "data_types"
|
2022-02-25 15:10:23 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-05-12 19:14:27 +00:00
|
|
|
description = "Shared data types"
|
2022-02-25 15:10:23 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2022-05-05 13:49:34 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-05-04 20:41:09 +00:00
|
|
|
ordered-float = "3"
|
2022-05-04 20:55:15 +00:00
|
|
|
percent-encoding = "2.1.0"
|
2022-02-25 15:10:23 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-05-04 20:55:15 +00:00
|
|
|
snafu = "0.7"
|
2022-06-17 10:28:28 +00:00
|
|
|
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "uuid"] }
|
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2022-02-25 15:10:23 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2022-05-04 21:04:29 +00:00
|
|
|
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
|
|
test_helpers = { path = "../test_helpers" }
|