vtcode-exec-events 0.68.2

Structured execution telemetry event schema used across VT Code crates.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "vtcode-exec-events"
version = "0.68.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structured execution telemetry event schema used across VT Code crates."
documentation = "https://docs.rs/vtcode-exec-events"
readme = "README.md"
keywords = [
    "vtcode",
    "agent",
    "turn",
    "vt",
    "cache",
]
categories = [
    "development-tools",
    "data-structures",
    "database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vinhnx/vtcode"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["serde-json"]
schema-export = ["dep:schemars"]
serde-json = []
telemetry-log = [
    "serde-json",
    "dep:log",
]
telemetry-tracing = ["dep:tracing"]

[lib]
name = "vtcode_exec_events"
path = "src/lib.rs"

[[example]]
name = "event_timeline"
path = "examples/event_timeline.rs"

[dependencies.log]
version = "0.4"
optional = true

[dependencies.schemars]
version = "0.8"
features = [
    "derive",
    "indexmap2",
]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.tracing]
version = "0.1"
optional = true

[lints.clippy]
expect_used = "deny"
identity_op = "deny"
manual_clamp = "deny"
manual_filter = "deny"
manual_find = "deny"
manual_flatten = "deny"
manual_map = "deny"
manual_memcpy = "deny"
manual_non_exhaustive = "deny"
manual_ok_or = "deny"
manual_range_contains = "deny"
manual_retain = "deny"
manual_strip = "deny"
manual_try_fold = "deny"
manual_unwrap_or = "deny"
needless_borrow = "deny"
needless_borrowed_reference = "deny"
needless_collect = "deny"
needless_late_init = "deny"
needless_option_as_deref = "deny"
needless_question_mark = "deny"
needless_update = "deny"
redundant_clone = "deny"
redundant_closure = "deny"
redundant_closure_for_method_calls = "deny"
redundant_static_lifetimes = "deny"
trivially_copy_pass_by_ref = "deny"
uninlined_format_args = "deny"
unnecessary_filter_map = "deny"
unnecessary_lazy_evaluations = "deny"
unnecessary_sort_by = "deny"
unnecessary_to_owned = "deny"
unwrap_used = "deny"

[lints.rust]