moadim 0.0.2

Moadim.io MCP/REST server for managing cron jobs
[workspace]
members = ["ui"]

[package]
name = "moadim"
version = "0.0.2"
edition = "2021"
description = "Moadim.io MCP/REST server for managing cron jobs"
license = "MIT"

# Shared (native + WASM)
[dependencies]
console_log = "1"
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["console"] }

# Native-only
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
anyhow = "1"
axum = "0.8"
cron = "0.12"
dirs = "5"
toml = "0.8"
rmcp = { version = "1.7.0", features = ["server", "macros", "transport-io", "transport-streamable-http-server"] }
schemars = "1"
tokio = { version = "1", features = ["full"] }
utoipa = { version = "5", features = ["axum_extras"] }
uuid = { version = "1", features = ["v4"] }

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

[build-dependencies]
serde_json = "1"

[lints.rust]
missing_docs = "deny"

[lints.clippy]
all = "deny"
missing_docs_in_private_items = "deny"