Squashed 'components/zinit/' content from commit 1b76c06

git-subtree-dir: components/zinit
git-subtree-split: 1b76c062fe31d552d1b7b23484ce163995a81482
This commit is contained in:
2025-08-16 21:12:16 +02:00
commit 2fda71af11
48 changed files with 11203 additions and 0 deletions

26
zinit-client/Cargo.toml Normal file
View File

@@ -0,0 +1,26 @@
[package]
name = "zinit-client"
version = "0.1.0"
edition = "2021"
description = "A client library for interacting with Zinit process manager"
license = "Apache 2.0"
authors = ["ThreeFold Tech, https://github.com/threefoldtech"]
[dependencies]
anyhow = "1.0"
async-trait = "0.1.88"
jsonrpsee = { version = "0.25.1", features = ["macros", "http-client", "ws-client"] }
reth-ipc = { git = "https://github.com/paradigmxyz/reth", package = "reth-ipc" }
tokio = { version = "1.14.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
log = "0.4"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "http_client"
path = "examples/http_client.rs"