hyperforge 3.2.0

Multi-forge repository management
Documentation
[package]
name = "hyperforge"
version = "3.2.0"
edition = "2021"
description = "Multi-forge repository management"
license = "MIT"

[lib]
name = "hyperforge"
path = "src/lib.rs"

[[bin]]
name = "hyperforge"
path = "src/bin/hyperforge.rs"

[[bin]]
name = "hyperforge-auth"
path = "src/bin/hyperforge-auth.rs"

[dependencies]
# Hub framework integration
plexus-core = "0.2.1"
plexus-macros = "0.2.2"
plexus-transport = "0.1.0"

# Async
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
async-stream = "0.3"
futures = "0.3"

# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
toml_edit = "0.22"  # Preserve formatting when editing

# Schema generation
schemars = { version = "1.1", features = ["derive"] }

# Core types
uuid = { version = "1.6", features = ["v4", "v5", "serde"] }
chrono = { version = "0.4", features = ["serde"] }

# Error handling
anyhow = "1"
thiserror = "1"

# Git operations
regex = "1"

# JSON-RPC (required by hub-macro)
jsonrpsee = { version = "0.26", features = ["server", "macros"] }

# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }

# CLI
clap = { version = "4", features = ["derive"] }

# HTTP client
reqwest = { version = "0.12", features = ["json", "native-tls-vendored"] }

# Utilities
dirs = "5"
urlencoding = "2"

[dev-dependencies]
tempfile = "3"

# Uncomment to use local versions during development:
# [patch.crates-io]
# plexus-core = { path = "../plexus-core" }
# plexus-macros = { path = "../plexus-macros" }
# plexus-transport = { path = "../plexus-transport" }