[package]
edition = "2024"
name = "line-protocol"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of Influx's line protocol"
homepage = "https://gitlab.com/gpollo/line-protocol"
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://gitlab.com/gpollo/line-protocol"
resolver = "2"
[features]
chrono = ["dep:chrono"]
default = ["chrono"]
[lib]
name = "line_protocol"
path = "src/lib.rs"
[[test]]
name = "test_builder"
path = "tests/test_builder.rs"
[[test]]
name = "test_derive"
path = "tests/test_derive.rs"
[[test]]
name = "test_derive_tag"
path = "tests/test_derive_tag.rs"
[[test]]
name = "test_ui"
path = "tests/test_ui.rs"
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.line-protocol-derive]
version = "0.1"
[dev-dependencies.trybuild]
version = "1"