vent-mcp 0.2.0

STDIO MCP server that lets agents vent to configured channels
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"
rust-version = "1.88"
name = "vent-mcp"
version = "0.2.0"
build = false
exclude = ["/audit/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "vent"
description = "STDIO MCP server that lets agents vent to configured channels"
homepage = "https://github.com/bnomei/vent-mcp"
documentation = "https://docs.rs/vent-mcp"
readme = "README.md"
keywords = [
    "mcp",
    "agent",
    "feedback",
    "webhook",
    "cli",
]
categories = [
    "command-line-utilities",
    "development-tools",
    "development-tools::debugging",
]
license = "MIT"
repository = "https://github.com/bnomei/vent-mcp"

[features]
cli = ["dep:clap"]
default = [
    "cli",
    "webhook",
]
webhook = [
    "dep:reqwest",
    "dep:url",
]

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

[[bin]]
name = "vent"
path = "src/main.rs"

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

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "serde",
]
default-features = false

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "error-context",
    "help",
    "std",
    "usage",
]
optional = true
default-features = false

[dependencies.futures-util]
version = "0.3"
features = ["alloc"]
default-features = false

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
]
optional = true
default-features = false

[dependencies.rmcp]
version = "1.7"
features = [
    "server",
    "transport-io",
    "macros",
]
default-features = false

[dependencies.schemars]
version = "1.2"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "fs",
    "io-util",
    "macros",
    "rt-multi-thread",
    "signal",
    "sync",
]

[dependencies.toml]
version = "0.9"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
    "registry",
    "std",
]
default-features = false

[dependencies.url]
version = "2"
optional = true

[dependencies.uuid]
version = "1"
features = ["v4"]

[dev-dependencies.tempfile]
version = "3"