[package]
edition = "2024"
rust-version = "1.90"
name = "atpmcp"
version = "0.14.5"
authors = ["Nick Gerakines <nick.gerakines@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AT Protocol MCP server for DAG-CBOR CID generation"
homepage = "https://tangled.org/ngerakines.me/atproto-crates"
documentation = "https://docs.rs/atpmcp"
readme = "README.md"
keywords = ["atprotocol"]
categories = [
"command-line-utilities",
"web-programming",
]
license = "MIT"
repository = "https://tangled.org/ngerakines.me/atproto-crates"
[[bin]]
name = "atpmcp"
path = "src/main.rs"
bench = false
doc = true
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.atproto-client]
version = "0.14.5"
[dependencies.atproto-dasl]
version = "0.14.5"
[dependencies.atproto-extras]
version = "0.14.5"
features = ["hickory-dns"]
[dependencies.atproto-identity]
version = "0.14.5"
features = ["hickory-dns"]
[dependencies.atproto-lexicon]
version = "0.14.5"
features = ["panproto"]
[dependencies.atproto-record]
version = "0.14.5"
[dependencies.dirs]
version = "6"
[dependencies.reqwest]
version = "0.12"
features = [
"charset",
"http2",
"system-proxy",
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["unbounded_depth"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.50"
features = [
"macros",
"rt",
"rt-multi-thread",
]
[dependencies.tracing]
version = "0.1"
features = ["async-await"]
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[lints.rust]
unsafe_code = "forbid"