[package]
edition = "2024"
name = "thoughts-bin"
version = "0.1.13"
authors = ["Allison Durham"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for flexible thought management using filesystem mounts"
readme = false
license = "MIT"
repository = "https://github.com/allisoneer/agentic_auxilary"
resolver = "2"
[package.metadata.repo]
role = "app"
family = "tools"
[package.metadata.repo.integrations]
mcp = false
logging = false
napi = false
[package.metadata.binstall]
pkg-url = "{repo}/releases/download/{name}-v{version}/{name}-{target}.tar.xz"
pkg-fmt = "txz"
bin-dir = "{name}-{target}/{bin}{binary-ext}"
disabled-strategies = [
"quick-install",
"compile",
]
[[bin]]
name = "thoughts"
path = "src/main.rs"
[[test]]
name = "init_idempotency"
path = "tests/init_idempotency.rs"
[[test]]
name = "support"
path = "tests/support.rs"
[[test]]
name = "sync_exit_status"
path = "tests/sync_exit_status.rs"
[[test]]
name = "worktree_test"
path = "tests/worktree_test.rs"
[dependencies.agentic-tools-utils]
version = "0.1.5"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.colored]
version = "3"
[dependencies.serde_json]
version = "1.0"
[dependencies.thoughts-tool]
version = "0.11.3"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"time",
]
[dev-dependencies.assert_cmd]
version = "2.1"
[dev-dependencies.git2]
version = "0.20"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
allow_attributes = "warn"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
clone_on_ref_ptr = "warn"
create_dir = "warn"
dbg_macro = "warn"
default_trait_access = "allow"
exit = "warn"
expect_used = "warn"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
rest_pat_in_fully_bound_structs = "warn"
self_named_module_files = "warn"
significant_drop_tightening = "allow"
struct_excessive_bools = "allow"
suboptimal_flops = "allow"
too_many_lines = "allow"
undocumented_unsafe_blocks = "warn"
unused_result_ok = "warn"
unwrap_used = "warn"
wildcard_dependencies = "warn"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]