[package]
edition = "2021"
rust-version = "1.80"
name = "skiff-cli"
version = "0.1.2"
authors = ["Sami Khayatei Houssaini"]
build = false
exclude = [
".tmp/",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Progressive MCP / OpenAPI / GraphQL CLI for agents — fast warm discovery, sessions, spool"
homepage = "https://github.com/samikh-git/skiff"
readme = "README.md"
keywords = [
"mcp",
"cli",
"openapi",
"graphql",
"ai",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/samikh-git/skiff"
[lib]
name = "skiff_cli"
path = "src/lib.rs"
[[bin]]
name = "skiff"
path = "src/bin/skiff.rs"
[[test]]
name = "bake_integration"
path = "tests/bake_integration.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "cloudflare_bench"
path = "tests/cloudflare_bench.rs"
[[test]]
name = "graphql_integration"
path = "tests/graphql_integration.rs"
[[test]]
name = "mcp_http_integration"
path = "tests/mcp_http_integration.rs"
[[test]]
name = "oauth_cli"
path = "tests/oauth_cli.rs"
[[test]]
name = "oauth_integration"
path = "tests/oauth_integration.rs"
[[test]]
name = "session_integration"
path = "tests/session_integration.rs"
[[test]]
name = "token_efficiency"
path = "tests/token_efficiency.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
"serde",
]
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.http]
version = "1"
[dependencies.libc]
version = "0.2"
[dependencies.open]
version = "5"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls",
"multipart",
"blocking",
"stream",
"query",
]
default-features = false
[dependencies.rmcp]
version = "3.1"
features = [
"client",
"transport-child-process",
"transport-streamable-http-client-reqwest",
"reqwest",
"auth",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.shell-words]
version = "1"
[dependencies.sse-stream]
version = "0.2"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"process",
"signal",
"time",
]
[dependencies.toon-format]
version = "0.5"
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.url]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true