[package]
edition = "2024"
name = "thoughts-tool"
version = "0.12.0"
authors = ["Allison Durham"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Flexible thought management using filesystem mounts for git repositories"
homepage = "https://github.com/allisoneer/agentic_auxilary"
readme = "README.md"
keywords = [
"filesystem",
"mount",
"git",
"documentation",
"mergerfs",
]
categories = [
"command-line-utilities",
"development-tools",
"filesystem",
]
license = "MIT"
repository = "https://github.com/allisoneer/agentic_auxilary"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]
[package.metadata.repo]
role = "lib"
family = "infra"
[package.metadata.repo.integrations]
mcp = false
logging = true
napi = false
[features]
default = []
linux = []
macos = []
[lib]
name = "thoughts_tool"
path = "src/lib.rs"
[[test]]
name = "config_integration"
path = "tests/config_integration.rs"
[[test]]
name = "git_clone_gitoxide"
path = "tests/git_clone_gitoxide.rs"
[[test]]
name = "git_clone_https"
path = "tests/git_clone_https.rs"
[[test]]
name = "git_edge_cases"
path = "tests/git_edge_cases.rs"
[[test]]
name = "git_fetch_gitoxide"
path = "tests/git_fetch_gitoxide.rs"
[[test]]
name = "git_push_shell"
path = "tests/git_push_shell.rs"
[[test]]
name = "git_remote_ref_discovery"
path = "tests/git_remote_ref_discovery.rs"
[[test]]
name = "git_shell_fetch"
path = "tests/git_shell_fetch.rs"
[[test]]
name = "git_sync_divergence"
path = "tests/git_sync_divergence.rs"
[[test]]
name = "git_sync_worktree"
path = "tests/git_sync_worktree.rs"
[[test]]
name = "init_claude_permissions"
path = "tests/init_claude_permissions.rs"
[[test]]
name = "mount_integration"
path = "tests/mount_integration.rs"
[[test]]
name = "mount_space_integration"
path = "tests/mount_space_integration.rs"
[[test]]
name = "support"
path = "tests/support.rs"
[dependencies.agentic-tools-core]
version = "0.4.0"
[dependencies.agentic_logging]
version = "0.2.0"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.atomicwrites]
version = "0.4"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.colored]
version = "3"
[dependencies.dirs]
version = "6"
[dependencies.futures]
version = "0.3"
[dependencies.git2]
version = "0.20"
features = [
"vendored-openssl",
"ssh",
"https",
]
[dependencies.gix]
version = "0.80"
features = [
"blocking-network-client",
"worktree-mutation",
"interrupt",
"blocking-http-transport-reqwest-rust-tls",
]
default-features = false
[dependencies.gix-protocol]
version = "0.58"
[dependencies.glob]
version = "0.3"
[dependencies.percent-encoding]
version = "2"
[dependencies.regex]
version = "1"
[dependencies.schemars]
version = "1"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"time",
]
[dependencies.which]
version = "8"
[dev-dependencies.assert_cmd]
version = "2.1"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.rustc_version]
version = "0.4"
[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]