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
|
|
|
|
2022-08-02 15:44:41 +00:00
|
|
|
[lib]
|
|
|
|
crate-type = ["rlib", "staticlib"]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
ffi = ["libc"]
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2022-07-22 14:41:10 +00:00
|
|
|
bytes = "1.2"
|
2022-08-02 15:44:41 +00:00
|
|
|
libc = { version = "0.2", optional = true }
|
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"
|
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" }
|