synaptic-deep 0.4.0

Deep agent harness for Synaptic — planning, filesystem, subagents, skills, memory
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "synaptic-deep"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deep agent harness for Synaptic — planning, filesystem, subagents, skills, memory"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
keywords = [
    "ai",
    "agent",
    "langchain",
    "llm",
    "rag",
]
categories = ["science"]
license = "MIT"
repository = "https://github.com/dnw3/synaptic"

[features]
all-providers = [
    "openai-provider",
    "anthropic-provider",
    "gemini-provider",
    "ollama-provider",
]
anthropic-provider = ["dep:synaptic-anthropic"]
config-builder = [
    "dep:synaptic-config",
    "dep:synaptic-models",
    "dep:synaptic-mcp",
    "openai-provider",
]
filesystem = []
gemini-provider = ["dep:synaptic-gemini"]
ollama-provider = ["dep:synaptic-ollama"]
openai-provider = ["dep:synaptic-openai"]

[lib]
name = "synaptic_deep"
path = "src/lib.rs"

[[test]]
name = "backend_state"
path = "tests/backend_state.rs"

[[test]]
name = "builder"
path = "tests/builder.rs"

[[test]]
name = "create_deep_agent_options"
path = "tests/create_deep_agent_options.rs"

[[test]]
name = "filesystem_mw"
path = "tests/filesystem_mw.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "memory"
path = "tests/memory.rs"

[[test]]
name = "patch_tool_calls"
path = "tests/patch_tool_calls.rs"

[[test]]
name = "skills"
path = "tests/skills.rs"

[[test]]
name = "store_backend"
path = "tests/store_backend.rs"

[[test]]
name = "subagent"
path = "tests/subagent.rs"

[[test]]
name = "tools"
path = "tests/tools.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.regex]
version = "1"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.synaptic-anthropic]
version = "0.4"
optional = true

[dependencies.synaptic-config]
version = "0.4"
optional = true

[dependencies.synaptic-core]
version = "0.4"

[dependencies.synaptic-gemini]
version = "0.4"
optional = true

[dependencies.synaptic-graph]
version = "0.4"

[dependencies.synaptic-macros]
version = "0.4"

[dependencies.synaptic-mcp]
version = "0.4"
optional = true

[dependencies.synaptic-middleware]
version = "0.4"

[dependencies.synaptic-models]
version = "0.4"
optional = true

[dependencies.synaptic-ollama]
version = "0.4"
optional = true

[dependencies.synaptic-openai]
version = "0.4"
optional = true

[dependencies.synaptic-tools]
version = "0.4"

[dependencies.tokio]
version = "1.41"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
    "time",
    "fs",
    "fs",
    "process",
]

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tokio]
version = "1.41"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
    "time",
    "fs",
]