The rust-sdk workspace (hanzoai/rust-sdk) just published these crate names at 1.1.21 with different implementations. To preserve clean namespaces: - crates.io name: hanzonet-pqc / hanzonet-did / hanzonet-config / hanzonet-mcp - Rust lib name: hanzo_pqc / hanzo_did / hanzo_config / hanzo_mcp (unchanged) This is achieved via `[lib] name = "hanzo_<x>"` on the renamed packages and `package = "hanzonet-<x>"` in workspace.dependencies — consumers keep using `hanzo-<x>.workspace = true` and `use hanzo_<x>::...` with zero code churn. Also: bumped patch versions on all members per crates.io state, pinned every path-dep in workspace.dependencies with a `version = ` so the workspace can publish to crates.io. workspace.package.version → 1.1.21. Effect: 32 net crates become publishable in topo order; hanzo-vm, hanzo-consensus, hanzo-l2 remain `publish = false` because they path-depend on cross-repo lux crates (luxprecompile-sys, lux-consensus) that aren't on crates.io.
25 lines
992 B
TOML
25 lines
992 B
TOML
[package]
|
|
name = "hanzo-tools"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = "MIT"
|
|
repository = "https://github.com/hanzonet/network"
|
|
homepage = "https://hanzo.ai"
|
|
description = "Tools Primitives for Hanzo AI platform"
|
|
|
|
[dependencies]
|
|
serde_json = "1.0.117"
|
|
tokio = { version = "1.36", features = ['rt', 'rt-multi-thread', 'macros', 'fs', 'io-util', 'net', 'sync', 'time'] }
|
|
regex = "1"
|
|
hanzo-messages = { version = "1.1.13", path = "../hanzo-messages" }
|
|
# hanzo-vector_resources = { }
|
|
reqwest = { version = "0.11.27", features = ['json'] }
|
|
hanzo-tools-runner = { version = "1.0.2", path = "../hanzo-tools-runner" }
|
|
serde = { version = "1.0.219", features = ['derive'] }
|
|
base64 = "0.22.0"
|
|
rmcp = { workspace = true, features = ["client", "transport-child-process", "transport-sse-client", "transport-sse-client-reqwest", "transport-streamable-http-client-reqwest"] }
|
|
log = "0.4.20"
|
|
once_cell = "1.19"
|
|
hanzo-mcp = { workspace = true }
|