[package]
edition = "2024"
name = "matrixcode-core"
version = "0.4.44"
authors = ["BigFish <bigfish1913@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MatrixCode Agent Core - Pure logic, no UI"
readme = false
license = "MIT"
repository = "https://github.com/bigfish1913/matrixcode"
resolver = "2"
[lib]
name = "matrixcode_core"
path = "src/lib.rs"
[[example]]
name = "custom_tool_injection"
path = "examples/custom_tool_injection.rs"
[[example]]
name = "integration_example"
path = "examples/integration_example.rs"
[[example]]
name = "lsp_demo"
path = "examples/lsp_demo.rs"
[[example]]
name = "lsp_simple"
path = "examples/lsp_simple.rs"
[[example]]
name = "mcp_config_test"
path = "examples/mcp_config_test.rs"
[[example]]
name = "mcp_test"
path = "examples/mcp_test.rs"
[[test]]
name = "api_connection_test"
path = "tests/api_connection_test.rs"
[[test]]
name = "lsp_integration_test"
path = "tests/lsp_integration_test.rs"
[[test]]
name = "test_bash"
path = "tests/test_bash.rs"
[[test]]
name = "test_codegraph_tool"
path = "tests/test_codegraph_tool.rs"
[[test]]
name = "test_debug"
path = "tests/test_debug.rs"
[[test]]
name = "test_edit"
path = "tests/test_edit.rs"
[[test]]
name = "test_glob"
path = "tests/test_glob.rs"
[[test]]
name = "test_ls"
path = "tests/test_ls.rs"
[[test]]
name = "test_lsp"
path = "tests/test_lsp.rs"
[[test]]
name = "test_mcp_core"
path = "tests/test_mcp_core.rs"
[[test]]
name = "test_memory_coherence_integration"
path = "tests/test_memory_coherence_integration.rs"
[[test]]
name = "test_multi_edit"
path = "tests/test_multi_edit.rs"
[[test]]
name = "test_overview"
path = "tests/test_overview.rs"
[[test]]
name = "test_prompt"
path = "tests/test_prompt.rs"
[[test]]
name = "test_prompt_debug"
path = "tests/test_prompt_debug.rs"
[[test]]
name = "test_providers"
path = "tests/test_providers.rs"
[[test]]
name = "test_proxy_tool"
path = "tests/test_proxy_tool.rs"
[[test]]
name = "test_read"
path = "tests/test_read.rs"
[[test]]
name = "test_search"
path = "tests/test_search.rs"
[[test]]
name = "test_skills"
path = "tests/test_skills.rs"
[[test]]
name = "test_todo_write"
path = "tests/test_todo_write.rs"
[[test]]
name = "test_tools_mod"
path = "tests/test_tools_mod.rs"
[[test]]
name = "test_workflow"
path = "tests/test_workflow.rs"
[[test]]
name = "test_write"
path = "tests/test_write.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.dotenvy]
version = "0.15"
[dependencies.env_logger]
version = "0.11"
[dependencies.futures-util]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.lsp-types]
version = "0.95"
[dependencies.notify]
version = "6"
[dependencies.once_cell]
version = "1.21"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.shell-words]
version = "1.1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2.0"
[dependencies.tiktoken-rs]
version = "0.6"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.urlencoding]
version = "2.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.mockito]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-test]
version = "0.4"