influxdb/data_types/Cargo.toml

24 lines
716 B
TOML
Raw Normal View History

[package]
name = "data_types"
version = "0.1.0"
authors = ["pauldix <paul@pauldix.net>"]
description = "InfluxDB IOx data_types, shared between IOx instances and IOx clients"
edition = "2018"
readme = "README.md"
[dependencies] # In alphabetical order
2021-02-05 18:21:24 +00:00
chrono = { version = "0.4", features = ["serde"] }
generated_types = { path = "../generated_types" }
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
percent-encoding = "2.1.0"
prost = "0.7"
regex = "1.4"
2021-03-29 15:32:36 +00:00
serde = { version = "1.0", features = ["rc"] }
serde_regex = "1.1"
snafu = "0.6"
tonic = { version = "0.4.0" }
tracing_deps = { path = "../tracing_deps" }
[dev-dependencies] # In alphabetical order
test_helpers = { path = "../test_helpers" }