32 lines
984 B
TOML
32 lines
984 B
TOML
[package]
|
|
name = "data_types"
|
|
description = "Shared data types"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4", default-features = false }
|
|
croaring = "1.0.0"
|
|
influxdb-line-protocol = { path = "../influxdb_line_protocol" }
|
|
iox_time = { path = "../iox_time" }
|
|
generated_types = { path = "../generated_types" }
|
|
observability_deps = { path = "../observability_deps" }
|
|
once_cell = "1"
|
|
ordered-float = "3"
|
|
schema = { path = "../schema" }
|
|
sha2 = "0.10"
|
|
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres", "uuid"] }
|
|
thiserror = "1.0.48"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
percent-encoding = "2.2.0"
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
assert_matches = "1"
|
|
paste = "1.0.14"
|
|
proptest = { version = "1.2.0", default-features = false }
|
|
test_helpers = { path = "../test_helpers" }
|
|
hex = "0.4.2"
|