[package]
edition = "2021"
rust-version = "1.70"
name = "claude_version_core"
version = "1.0.0"
authors = ["Kostiantyn Mysnyk <wandalen@obox.systems>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Layer 1 domain helpers: version management, settings I/O, and install utilities"
homepage = "https://github.com/iron-cage/claude_tools"
documentation = "https://docs.rs/claude_version_core"
readme = "readme.md"
keywords = [
"claude",
"ai",
"version",
"install",
"settings",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/iron-cage/claude_tools"
[features]
default = ["enabled"]
enabled = []
full = ["enabled"]
[lib]
name = "claude_version_core"
path = "src/lib.rs"
[[test]]
name = "settings_io_test"
path = "tests/settings_io_test.rs"
[[test]]
name = "version_test"
path = "tests/version_test.rs"
[dependencies.claude_common]
version = "~1.0.0"
default-features = false
[dev-dependencies.tempfile]
version = "~3"
[dev-dependencies.test_tools]
version = "~0.16"
features = ["full"]
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