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.
This repo holds the network-layer Rust crates previously living under
github.com/hanzoai/node:hanzo-libs/. Breaking them out gives each crate
its own version + publish cadence and lets downstream consumers depend on
them without pulling the whole node tree.
Highlights:
- hanzo-hmm — Hidden Markov Model primitives + Hamiltonian MarketMaker
for pricing heterogeneous compute. 17 lib tests pass. Earlier was named
hanzo-llm (misleading) and the standalone hmm stub; both merged here
with HLLM* identifier prefixes scrubbed.
- hanzo-vm — Hanzo EVM with precompiles wired to canonical
libluxprecompile.dylib (PQ verify, Quasar) and hanzo-engine
(AI inference, embedding). 37 lib tests pass (DYLD_LIBRARY_PATH=
/Users/z/work/lux/precompile/dist).
- hanzo-machine — VM lifecycle (Apple Virtualization.framework via vfkit
on macOS; KVM on Linux), thin Rust wrapper over canonical C++ impl
in github.com/luxfi/luxcpp/machine.
- hanzo-pqc / hanzo-did / hanzo-identity / hanzo-libp2p* — crypto +
identity + networking primitives.
- hanzo-l2 / hanzo-consensus / hanzo-mining — chain layer.
- hanzo-api / hanzo-http-api / hanzo-mcp / hanzo-tools / hanzo-tools-runner
— service + tooling crates.
Build: `cargo build --workspace` succeeds in ~25min cold (44 crates).