2020-05-22 20:46:02 +00:00
|
|
|
[package]
|
2023-03-17 13:19:50 +00:00
|
|
|
name = "influxdb-line-protocol"
|
2023-03-16 17:55:10 +00:00
|
|
|
version = "1.0.0"
|
|
|
|
authors = ["InfluxDB IOx Project Developers"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
2023-03-16 18:27:27 +00:00
|
|
|
description = "InfluxDB line protocol parser and builder."
|
2023-03-16 17:55:10 +00:00
|
|
|
homepage = "https://github.com/influxdata/influxdb_iox/tree/main/influxdb_line_protocol"
|
|
|
|
repository = "https://github.com/influxdata/influxdb_iox/tree/main/influxdb_line_protocol"
|
2020-05-22 20:46:02 +00:00
|
|
|
|
2023-03-16 17:55:10 +00:00
|
|
|
# Note this crate is published as its own crate on crates.io but kept in
|
|
|
|
# this repository for maintenance convenience.
|
|
|
|
#
|
|
|
|
# Thus it is important not to have workspace dependencies.
|
|
|
|
#
|
|
|
|
# https://github.com/influxdata/influxdb_iox/issues/7051
|
2022-08-02 15:44:41 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2023-03-16 17:55:10 +00:00
|
|
|
log = "0.4.17"
|
2021-12-01 16:41:07 +00:00
|
|
|
nom = { version = "7", default-features = false, features = ["std"] }
|
2022-10-03 01:56:00 +00:00
|
|
|
smallvec = { version = "1.10.0", features = ["union"] }
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2020-05-22 20:46:02 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2021-10-25 08:45:44 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|