Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ default = ["mcp", "http"]
# MCP server (stdio + streamable HTTP) — used by the standalone binary
mcp = ["dep:rmcp"]
# HTTP server (axum) — used by the standalone binary and optionally by embedders
http = ["dep:axum", "dep:tower"]
http = ["dep:axum"]

[dependencies]
# Async runtime
Expand All @@ -32,7 +32,6 @@ serde_json = "1.0"

# Error handling
anyhow = "1.0"
thiserror = "2.0"

# Logging
tracing = "0.1"
Expand Down Expand Up @@ -65,7 +64,6 @@ urlencoding = "2.1"

# HTTP server (for munbot integration or standalone HTTP mode)
axum = { version = "0.8", optional = true, default-features = false, features = ["http1", "json", "tokio"] }
tower = { version = "0.5", optional = true, default-features = false }

# XML parsing (EC2 / RDS / CloudWatch responses)
quick-xml = "0.37"
Expand Down
2 changes: 1 addition & 1 deletion src/clouds/aws/cloudwatch_logs.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use anyhow::{anyhow, Result};
use futures::future::join_all;

use super::common::list_regions;
use super::auth::{sign, AwsCreds};
use super::common::list_regions;

// ── Public types ──────────────────────────────────────────────────────────────

Expand Down
6 changes: 1 addition & 5 deletions src/clouds/aws/ec2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ use chrono::{DateTime, Utc};
use futures::future::join_all;

use super::common::{ec2_query, form_params, list_regions};
use super::{
as_items,
auth::AwsCreds,
az_to_region, xml_to_value,
};
use super::{as_items, auth::AwsCreds, az_to_region, xml_to_value};

// ── Public types ──────────────────────────────────────────────────────────────

Expand Down
Loading