[package]
edition = "2024"
rust-version = "1.93"
name = "zero-session"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local session history, replay, and wrap-up storage for ZERO."
homepage = "https://getzero.dev"
documentation = "https://github.com/zero-intel/zero/tree/main/docs"
readme = false
keywords = [
"zero",
"onchain",
"terminal",
"automation",
"trading",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/zero-intel/zero"
[lib]
name = "zero_session"
path = "src/lib.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.refinery]
version = "0.8"
features = ["rusqlite"]
[dependencies.rusqlite]
version = "0.32"
features = [
"bundled",
"chrono",
"serde_json",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"