[package]
edition = "2021"
rust-version = "1.74"
name = "claude_storage_core"
version = "1.5.1"
authors = ["wandalen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for Claude Code filesystem storage access (zero dependencies)"
homepage = "https://github.com/iron-cage/claude_tools"
documentation = "https://docs.rs/claude_storage_core"
readme = "readme.md"
keywords = [
"claude",
"storage",
"jsonl",
"conversation",
"parser",
]
categories = [
"development-tools",
"filesystem",
"parsing",
]
license = "MIT"
repository = "https://github.com/iron-cage/claude_tools"
[features]
default = ["enabled"]
enabled = []
full = ["enabled"]
[lib]
name = "claude_storage_core"
path = "src/lib.rs"
[[example]]
name = "parse_real_session"
path = "examples/parse_real_session.rs"
[[test]]
name = "continuation_tests"
path = "tests/continuation_tests.rs"
[[test]]
name = "count_entries_bug"
path = "tests/count_entries_bug.rs"
[[test]]
name = "export"
path = "tests/export.rs"
[[test]]
name = "filtering"
path = "tests/filtering.rs"
[[test]]
name = "json_multibyte_bug"
path = "tests/json_multibyte_bug.rs"
[[test]]
name = "json_surrogate_pair_bug"
path = "tests/json_surrogate_pair_bug.rs"
[[test]]
name = "path_decoding_hyphen_component_bug"
path = "tests/path_decoding_hyphen_component_bug.rs"
[[test]]
name = "path_encoding_double_slash_bug"
path = "tests/path_encoding_double_slash_bug.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "status_global_stats_fast_bug"
path = "tests/status_global_stats_fast_bug.rs"
[[test]]
name = "string_matcher"
path = "tests/string_matcher.rs"
[[test]]
name = "underscore_encoding_compatibility"
path = "tests/underscore_encoding_compatibility.rs"
[dependencies]
[dev-dependencies.tempfile]
version = "^3"
[lints.clippy]
absolute_paths = "allow"
arbitrary_source_item_ordering = "allow"
cast_precision_loss = "allow"
doc_include_without_cfg = "warn"
implicit_return = "allow"
inline_always = "allow"
items_after_statements = "allow"
missing_docs_in_private_items = "allow"
missing_inline_in_public_items = "warn"
mod_module_files = "allow"
module_name_repetitions = "allow"
needless_pass_by_value = "allow"
pub_use = "allow"
question_mark_used = "allow"
single_call_fn = "allow"
std_instead_of_alloc = "allow"
std_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe-code = "deny"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1