2020-05-22 20:46:02 +00:00
|
|
|
[package]
|
2020-11-05 18:44:36 +00:00
|
|
|
name = "influxdb_line_protocol"
|
2020-05-22 20:46:02 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2020-05-22 20:46:02 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2021-12-01 16:41:07 +00:00
|
|
|
nom = { version = "7", default-features = false, features = ["std"] }
|
2021-12-01 21:55:54 +00:00
|
|
|
smallvec = { version = "1.7.0", features = ["union"] }
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2021-04-02 20:14:30 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
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" }
|