[package]
edition = "2024"
name = "pr_comments"
version = "0.8.1"
authors = ["Allison Durham"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fetch GitHub PR comments via CLI and MCP"
homepage = "https://github.com/allisoneer/agentic_auxilary"
readme = "README.md"
keywords = [
"github",
"pull-requests",
"comments",
"cli",
"mcp",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/allisoneer/agentic_auxilary"
resolver = "2"
[package.metadata.repo]
role = "tool-lib"
family = "tools"
[package.metadata.repo.integrations]
mcp = false
logging = true
napi = false
[lib]
name = "pr_comments"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "mcp_stdout_cleanliness"
path = "tests/mcp_stdout_cleanliness.rs"
[dependencies.agentic-config]
version = "0.5.0"
[dependencies.agentic-tools-core]
version = "0.4.0"
[dependencies.agentic-tools-mcp]
version = "0.1.7"
[dependencies.agentic-tools-utils]
version = "0.1.5"
[dependencies.agentic_logging]
version = "0.2.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.futures]
version = "0.3"
[dependencies.gh-config]
version = "0.5.1"
[dependencies.git2]
version = "0.20"
features = ["vendored-openssl"]
[dependencies.octocrab]
version = "0.49"
features = [
"default-client",
"follow-redirect",
"jwt-aws-lc-rs",
"retry",
"rustls",
"rustls-aws-lc-rs",
"timeout",
"tracing",
]
default-features = false
[dependencies.schemars]
version = "1"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.thoughts-tool]
version = "0.12.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.url]
version = "2"
[dev-dependencies.mockito]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
allow_attributes = "warn"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
clone_on_ref_ptr = "warn"
create_dir = "warn"
dbg_macro = "warn"
default_trait_access = "allow"
exit = "warn"
expect_used = "warn"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
rest_pat_in_fully_bound_structs = "warn"
self_named_module_files = "warn"
significant_drop_tightening = "allow"
struct_excessive_bools = "allow"
suboptimal_flops = "allow"
too_many_lines = "allow"
undocumented_unsafe_blocks = "warn"
unused_result_ok = "warn"
unwrap_used = "warn"
wildcard_dependencies = "warn"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]