[package]
edition = "2021"
name = "claude_storage"
version = "1.0.0"
authors = ["Kostiantyn Mysnyk <wandalen@obox.systems>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for exploring Claude Code filesystem storage"
homepage = "https://github.com/iron-cage/claude_tools"
documentation = "https://docs.rs/claude_storage"
readme = "readme.md"
keywords = [
"claude",
"storage",
"cli",
"conversation",
"tool",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/iron-cage/claude_tools"
[features]
cli = ["dep:unilang"]
default = [
"enabled",
"cli",
]
enabled = []
full = [
"enabled",
"cli",
]
[lib]
name = "claude_storage"
path = "src/lib.rs"
[[bin]]
name = "claude_storage"
path = "src/main.rs"
required-features = ["cli"]
[[bin]]
name = "clg"
path = "src/bin/clg.rs"
required-features = ["cli"]
[[example]]
name = "list_projects"
path = "examples/list_projects.rs"
[[example]]
name = "token_usage"
path = "examples/token_usage.rs"
[[test]]
name = "behavior"
path = "tests/behavior/mod.rs"
[[test]]
name = "cli_commands"
path = "tests/cli_commands.rs"
[[test]]
name = "cli_sanity"
path = "tests/cli_sanity.rs"
[[test]]
name = "command_version_consistency_test"
path = "tests/command_version_consistency_test.rs"
[[test]]
name = "content_display_integration_test"
path = "tests/content_display_integration_test.rs"
[[test]]
name = "count_command_bug_fix"
path = "tests/count_command_bug_fix.rs"
[[test]]
name = "export_command_test"
path = "tests/export_command_test.rs"
[[test]]
name = "lib_test"
path = "tests/lib_test.rs"
[[test]]
name = "list_command_test"
path = "tests/list_command_test.rs"
[[test]]
name = "list_smart_session_display"
path = "tests/list_smart_session_display.rs"
[[test]]
name = "parameter_validation_test"
path = "tests/parameter_validation_test.rs"
[[test]]
name = "path_resolution_integration_test"
path = "tests/path_resolution_integration_test.rs"
[[test]]
name = "path_resolution_test"
path = "tests/path_resolution_test.rs"
[[test]]
name = "project_parameter_bug_fix"
path = "tests/project_parameter_bug_fix.rs"
[[test]]
name = "project_parameter_multi_command_bug"
path = "tests/project_parameter_multi_command_bug.rs"
[[test]]
name = "project_parameter_relative_path_bug"
path = "tests/project_parameter_relative_path_bug.rs"
[[test]]
name = "projects_command_test"
path = "tests/projects_command_test.rs"
[[test]]
name = "projects_output_format_test"
path = "tests/projects_output_format_test.rs"
[[test]]
name = "projects_zero_byte_count_bug"
path = "tests/projects_zero_byte_count_bug.rs"
[[test]]
name = "search_command_test"
path = "tests/search_command_test.rs"
[[test]]
name = "search_session_partial_uuid_bug"
path = "tests/search_session_partial_uuid_bug.rs"
[[test]]
name = "search_special_characters_bug"
path = "tests/search_special_characters_bug.rs"
[[test]]
name = "session_path_command_test"
path = "tests/session_path_command_test.rs"
[[test]]
name = "smart_show_command"
path = "tests/smart_show_command.rs"
[[test]]
name = "status_path_test"
path = "tests/status_path_test.rs"
[[test]]
name = "truncate_utf8_bug"
path = "tests/truncate_utf8_bug.rs"
[dependencies.claude_storage_core]
version = "~1.0.0"
default-features = false
[dependencies.unilang]
version = "~0.48"
features = [
"enabled",
"approach_yaml_multi_build",
"approach_yaml_multi_build",
]
optional = true
default-features = false
[dev-dependencies.assert_cmd]
version = "~2.0"
[dev-dependencies.tempfile]
version = "~3"
[build-dependencies.serde_yaml]
version = "~0.9"
[build-dependencies.unilang]
version = "~0.48"
features = [
"enabled",
"approach_yaml_multi_build",
"approach_yaml_multi_build",
]
default-features = false
[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"
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