Add publish = false to all crates to prevent accidental crates.io publish

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-29 13:08:19 -04:00
parent 9a078df89c
commit 392add851a
No known key found for this signature in database
29 changed files with 29 additions and 0 deletions

View file

@ -2,6 +2,7 @@
name = "fabro-agent"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "A programmable agentic loop for coding agents"
repository = "https://github.com/brynary/arc"

View file

@ -2,6 +2,7 @@
name = "fabro-api-types"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Generated Rust types from the Fabro API OpenAPI spec"

View file

@ -2,6 +2,7 @@
name = "fabro-cli"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Unified CLI for the Fabro AI framework"

View file

@ -2,6 +2,7 @@
name = "fabro-config"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Centralized configuration types for Fabro"

View file

@ -2,6 +2,7 @@
name = "fabro-core"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Generic workflow execution engine"

View file

@ -2,6 +2,7 @@
name = "fabro-db"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "SQLite persistence layer for Fabro"

View file

@ -2,6 +2,7 @@
name = "fabro-devcontainer"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Parse and resolve devcontainer.json into Dockerfiles and lifecycle hooks"

View file

@ -2,6 +2,7 @@
name = "fabro-git-storage"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Store structured data in git without touching the working directory"
repository = "https://github.com/brynary/arc"

View file

@ -2,6 +2,7 @@
name = "fabro-github"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "GitHub App authentication and API helpers for Fabro"

View file

@ -2,6 +2,7 @@
name = "fabro-graphviz"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Graphviz DOT parser and typed graph data model"

View file

@ -2,6 +2,7 @@
name = "fabro-hooks"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "User-defined lifecycle hooks for Fabro workflows"

View file

@ -2,6 +2,7 @@
name = "fabro-interview"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Human-in-the-loop interviewer traits and implementations"

View file

@ -2,6 +2,7 @@
name = "fabro-llm"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "A unified client library for multiple LLM providers"
repository = "https://github.com/brynary/arc"

View file

@ -2,6 +2,7 @@
name = "fabro-macros"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Procedural macros for fabro"

View file

@ -2,6 +2,7 @@
name = "fabro-mcp"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "MCP (Model Context Protocol) client for connecting to external tool servers"

View file

@ -2,6 +2,7 @@
name = "fabro-model"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "LLM model catalog: provider identity, model metadata, and resolution"

View file

@ -2,6 +2,7 @@
name = "fabro-openai-oauth"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "OpenAI OAuth PKCE token acquisition for Fabro"

View file

@ -2,6 +2,7 @@
name = "fabro-proctitle"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "In-place process title updates for Fabro detached engines"

View file

@ -2,6 +2,7 @@
name = "fabro-retro"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Retrospective analysis for Fabro workflow runs"

View file

@ -2,6 +2,7 @@
name = "fabro-sandbox"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Sandbox trait and implementations for Fabro agent execution environments"

View file

@ -2,6 +2,7 @@
name = "fabro-server"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "HTTP server for Fabro pipelines"

View file

@ -2,6 +2,7 @@
name = "fabro-slack"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Slack Socket Mode integration for Fabro interviewer"

View file

@ -2,6 +2,7 @@
name = "fabro-store"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
[lib]

View file

@ -2,6 +2,7 @@
name = "fabro-telemetry"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Telemetry, analytics, and crash reporting"

View file

@ -2,6 +2,7 @@
name = "fabro-tracker"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Tracker trait and types for issue tracking integrations"

View file

@ -2,6 +2,7 @@
name = "fabro-types"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Shared record structs and enums for Fabro"

View file

@ -2,6 +2,7 @@
name = "fabro-util"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Shared utilities: secret redaction and terminal styling"

View file

@ -2,6 +2,7 @@
name = "fabro-validate"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Validation and lint rules for Fabro workflow graphs"

View file

@ -2,6 +2,7 @@
name = "fabro-workflows"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "A DOT-based pipeline runner for multi-stage AI workflows"
repository = "https://github.com/brynary/arc"