[package]
edition = "2024"
name = "thoughts-tool"
version = "0.8.2"
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_shell_fetch"
path = "tests/git_shell_fetch.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 = "migration_v1_to_v2"
path = "tests/migration_v1_to_v2.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.1.1"
[dependencies.agentic_logging]
version = "0.1.2"
[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 = "2"
[dependencies.dirs]
version = "5"
[dependencies.futures]
version = "0.3"
[dependencies.git2]
version = "0.18"
features = [
"vendored-openssl",
"ssh",
"https",
]
[dependencies.gix]
version = "0.77"
features = [
"blocking-network-client",
"worktree-mutation",
"interrupt",
"blocking-http-transport-reqwest-rust-tls",
]
default-features = false
[dependencies.glob]
version = "0.3"
[dependencies.regex]
version = "1"
[dependencies.schemars]
version = "1"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[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 = "6"
[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"
[target."cfg(unix)".dependencies.nix]
version = "0.27"
features = [
"fs",
"mount",
]