File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " hyperware_process_lib"
33authors = [" Sybil Technologies AG" ]
4- version = " 1.2.1 "
4+ version = " 2.0.0 "
55edition = " 2021"
66description = " A library for writing Hyperware processes in Rust."
77homepage = " https://hyperware.ai"
Original file line number Diff line number Diff line change @@ -7,3 +7,12 @@ Library of functions for more ergonomic Hyperware Rust process development.
77[ Crate can be found here] ( https://crates.io/crates/hyperware_process_lib ) .
88
99See the [ Hyperware Book] ( https://book.hyperware.ai ) for a guide on how to use this library to write Hyperware apps in Rust.
10+
11+ ## Dependencies
12+
13+ ` process_lib ` v` 1.x.y ` uses [ ` wit-bindgen ` ] ( https://github.com/bytecodealliance/wit-bindgen ) v` 0.36.0 ` .
14+ Processes depending on ` process_lib ` must also use that version.
15+
16+ ` process_lib ` version | ` wit-bindgen ` version
17+ --------------------- | ---------------------
18+ ` 1.x.y ` | ` 0.36.0 `
Original file line number Diff line number Diff line change 1313//! for applications that want to maximize composability and introspectability.
1414//! For blobs, we recommend bincode to serialize and deserialize to bytes.
1515//!
16+ //! `process_lib` v`1.x.y` uses [`wit-bindgen`](https://github.com/bytecodealliance/wit-bindgen) v`0.36.0`.
17+ //! Processes depending on `process_lib` must also use that version.
18+ //!
19+ //! `process_lib` version | `wit-bindgen` version
20+ //! --------------------- | ---------------------
21+ //! `1.x.y` | `0.36.0`
22+ //!
1623pub use crate :: hyperware:: process:: standard:: * ;
1724use serde_json:: Value ;
1825
You can’t perform that action at this time.
0 commit comments