[package]
edition = "2024"
rust-version = "1.88"
name = "origin-mcp-core"
version = "0.2.0"
authors = ["Jörn Seidel <joern.seidel@casoon.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The MCP boundary: which of an application's operations an external AI may invoke, and under which permission."
homepage = "https://casoon.dev"
readme = "README.md"
keywords = [
"mcp",
"model-context",
"ai",
"tauri",
"tools",
]
categories = [
"artificial-intelligence",
"development-tools",
]
license = "MIT"
repository = "https://github.com/casoon/origin"
[lib]
name = "origin_mcp_core"
path = "src/lib.rs"
[[test]]
name = "server"
path = "tests/server.rs"
[dependencies.async-trait]
version = "0.1.92"
[dependencies.origin-domain]
version = "0.2.0"
[dependencies.origin-platform]
version = "0.2.0"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.origin-platform]
version = "0.2.0"
features = ["testing"]
[dev-dependencies.tokio]
version = "1.53"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"rt-multi-thread",
"macros",
]
[lints.clippy]
dbg_macro = "warn"
print_stdout = "warn"
todo = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"