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).
22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
MIT License
|
|
|
|
Copyright (c) 2025 Hanzo AI, Inc.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|