[package]
name = "fluidattacks-tracks"
version = "0.1.0"
description = "Rust library for usage analytics"
license = "MPL-2.0"
edition = "2021"
authors = ["Fluid Attacks Engineering <development@fluidattacks.com>"]
repository = "https://gitlab.com/fluidattacks/universe"
readme = "README.md"
rust-version = "1.75"
documentation = "https://docs.rs/fluidattacks-tracks"
keywords = ["analytics", "tracking", "telemetry", "events"]
categories = ["api-bindings"]
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.13", default-features = false, features = [
"blocking",
"json",
"rustls",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "deny", priority = -2 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
arithmetic_side_effects = "deny"
as_conversions = "deny"
implicit_clone = "deny"
indexing_slicing = "deny"
inefficient_to_string = "deny"
manual_let_else = "deny"
option_if_let_else = "deny"
print_stdout = "deny"
print_stderr = "deny"
shadow_unrelated = "deny"
str_to_string = "deny"
unreachable = "deny"
wildcard_imports = "deny"