19 lines
604 B
TOML
19 lines
604 B
TOML
[package]
|
|
name = "entry"
|
|
version = "0.1.0"
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
|
edition = "2018"
|
|
description = "The entry format used by the write buffer"
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
data_types = { path = "../data_types" }
|
|
# See docs/regenerating_flatbuffers.md about updating generated code when updating the
|
|
# version of the flatbuffers crate
|
|
flatbuffers = "2"
|
|
snafu = "0.6"
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
|
ouroboros = "0.12.0"
|
|
internal_types = { path = "../internal_types" }
|
|
generated_types = { path = "../generated_types" }
|