From 118c12e985ceebdaf80f48d5aeaa78f902425297 Mon Sep 17 00:00:00 2001 From: hosted-fornet Date: Fri, 9 Aug 2024 17:03:18 -0700 Subject: [PATCH] docs: add initial package & modify build script --- .gitignore | 1 + Cargo.lock | 73 +- kinode/Cargo.toml | 4 +- kinode/build.rs | 71 +- kinode/packages/docs/.gitignore | 8 + kinode/packages/docs/Cargo.lock | 3227 ++++++++++++++++++++++++ kinode/packages/docs/Cargo.toml | 10 + kinode/packages/docs/docs/Cargo.toml | 18 + kinode/packages/docs/docs/src/icon | 1 + kinode/packages/docs/docs/src/lib.rs | 32 + kinode/packages/docs/metadata.json | 18 + kinode/packages/docs/pkg/manifest.json | 18 + 12 files changed, 3470 insertions(+), 11 deletions(-) create mode 100644 kinode/packages/docs/.gitignore create mode 100644 kinode/packages/docs/Cargo.lock create mode 100644 kinode/packages/docs/Cargo.toml create mode 100644 kinode/packages/docs/docs/Cargo.toml create mode 100644 kinode/packages/docs/docs/src/icon create mode 100644 kinode/packages/docs/docs/src/lib.rs create mode 100644 kinode/packages/docs/metadata.json create mode 100644 kinode/packages/docs/pkg/manifest.json diff --git a/.gitignore b/.gitignore index 5751e6d4..10128d37 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ kinode/packages/app_store/pkg/ui/* kinode/packages/homepage/pkg/ui/* kinode/src/register-ui/build/ kinode/src/register-ui/dist/ +kinode/packages/docs/pkg/ui diff --git a/Cargo.lock b/Cargo.lock index afafcf86..28f043ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2239,6 +2239,18 @@ version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" +[[package]] +name = "filetime" +version = "0.2.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf401df4a4e3872c4fe8151134cf483738e74b67fc934d6532c882b3d24a4550" +dependencies = [ + "cfg-if", + "libc", + "libredox", + "windows-sys 0.59.0", +] + [[package]] name = "fixed-hash" version = "0.8.0" @@ -3240,13 +3252,14 @@ dependencies = [ "clap", "crossterm", "dashmap", + "flate2", "futures", "generic-array", "hex", "hmac", "http 1.1.0", "jwt", - "kit", + "kit 0.6.10", "lazy_static", "lib", "nohash-hasher", @@ -3266,6 +3279,7 @@ dependencies = [ "snow", "socket2 0.5.7", "static_dir", + "tar", "thiserror", "tokio", "tokio-tungstenite 0.21.0", @@ -3362,6 +3376,38 @@ dependencies = [ "zip 0.6.6", ] +[[package]] +name = "kit" +version = "0.6.10" +source = "git+https://github.com/kinode-dao/kit?tag=v0.6.10#9e9f87b399109b824d99475584dd249eda2c1906" +dependencies = [ + "anyhow", + "base64 0.21.7", + "clap", + "color-eyre", + "dirs 5.0.1", + "fs-err", + "git2", + "hex", + "kinode_process_lib 0.8.0", + "nix", + "regex", + "reqwest 0.11.27", + "semver 1.0.23", + "serde", + "serde_json", + "sha2", + "tokio", + "toml", + "tracing", + "tracing-appender", + "tracing-error", + "tracing-subscriber", + "walkdir", + "wit-bindgen", + "zip 0.6.6", +] + [[package]] name = "kns_indexer" version = "0.2.0" @@ -3401,7 +3447,7 @@ name = "lib" version = "0.9.0" dependencies = [ "alloy", - "kit", + "kit 0.6.8", "lazy_static", "rand 0.8.5", "ring", @@ -3457,6 +3503,7 @@ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ "bitflags 2.6.0", "libc", + "redox_syscall", ] [[package]] @@ -5460,6 +5507,17 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" +[[package]] +name = "tar" +version = "0.4.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909" +dependencies = [ + "filetime", + "libc", + "xattr", +] + [[package]] name = "target-lexicon" version = "0.12.16" @@ -7207,6 +7265,17 @@ dependencies = [ "tap", ] +[[package]] +name = "xattr" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" +dependencies = [ + "libc", + "linux-raw-sys", + "rustix", +] + [[package]] name = "zerocopy" version = "0.7.35" diff --git a/kinode/Cargo.toml b/kinode/Cargo.toml index 9be51764..c0e15786 100644 --- a/kinode/Cargo.toml +++ b/kinode/Cargo.toml @@ -14,7 +14,9 @@ path = "src/main.rs" [build-dependencies] anyhow = "1.0.71" -kit = { git = "https://github.com/kinode-dao/kit", tag = "v0.6.8" } +flate2 = "1.0" +kit = { git = "https://github.com/kinode-dao/kit", tag = "v0.6.10" } +tar = "0.4" tokio = "1.28" walkdir = "2.4" zip = "0.6" diff --git a/kinode/build.rs b/kinode/build.rs index 4b0b951c..dac7a972 100644 --- a/kinode/build.rs +++ b/kinode/build.rs @@ -1,9 +1,12 @@ use std::{ collections::HashSet, fs::{self, File}, - io::{Cursor, Read, Write}, + io::{BufReader, Cursor, Read, Write}, path::{Path, PathBuf}, }; + +use flate2::read::GzDecoder; +use tar::Archive; use zip::write::FileOptions; fn get_features() -> String { @@ -44,6 +47,53 @@ fn output_reruns(dir: &Path, rerun_files: &HashSet) { } } +fn untar_gz_file(path: &Path, dest: &Path) -> std::io::Result<()> { + // Open the .tar.gz file + let tar_gz = File::open(path)?; + let tar_gz_reader = BufReader::new(tar_gz); + + // Decode the gzip layer + let tar = GzDecoder::new(tar_gz_reader); + + // Create a new archive from the tar file + let mut archive = Archive::new(tar); + + // Unpack the archive into the specified destination directory + archive.unpack(dest)?; + + Ok(()) +} + +fn get_kinode_book(packages_dir: &Path) -> anyhow::Result<()> { + let rt = tokio::runtime::Runtime::new().unwrap(); + rt.block_on(async { + let releases = kit::boot_fake_node::fetch_releases("kinode-dao", "kinode-book") + .await + .map_err(|e| anyhow::anyhow!("{e:?}"))?; + if releases.is_empty() { + return Err(anyhow::anyhow!("couldn't retrieve kinode-book releases")); + } + let release = &releases[0]; + if release.assets.is_empty() { + return Err(anyhow::anyhow!("most recent kinode-book release has no assets")); + } + let release_url = format!( + "https://github.com/kinode-dao/kinode-book/releases/download/{}/{}", + release.tag_name, + release.assets[0].name, + ); + let book_dir = packages_dir.join("docs").join("pkg").join("ui"); + fs::create_dir_all(&book_dir)?; + let book_tar_path = book_dir.join("book.tar.gz"); + kit::build::download_file(&release_url, &book_tar_path) + .await + .map_err(|e| anyhow::anyhow!("{e:?}"))?; + untar_gz_file(&book_tar_path, &book_dir)?; + fs::remove_file(book_tar_path)?; + Ok(()) + }) +} + fn build_and_zip_package( entry_path: PathBuf, parent_pkg_path: &str, @@ -60,7 +110,11 @@ fn build_and_zip_package( None, None, None, - true, + vec![], + vec![], + false, + false, + false, ) .await .map_err(|e| anyhow::anyhow!("{:?}", e))?; @@ -129,9 +183,7 @@ fn main() -> anyhow::Result<()> { } } - let entries: Vec<_> = fs::read_dir(packages_dir)? - .map(|entry| entry.unwrap().path()) - .collect(); + get_kinode_book(&packages_dir)?; let rerun_files: HashSet = HashSet::from([ "Cargo.lock".to_string(), @@ -142,9 +194,12 @@ fn main() -> anyhow::Result<()> { let features = get_features(); - let results: Vec)>> = entries - .iter() - .filter_map(|entry_path| { + let results: Vec)>> = fs::read_dir(&packages_dir)? + .filter_map(|entry| { + let entry_path = match entry { + Ok(e) => e.path(), + Err(_) => return None, + }; let parent_pkg_path = entry_path.join("pkg"); if !parent_pkg_path.exists() { // don't run on, e.g., `.DS_Store` diff --git a/kinode/packages/docs/.gitignore b/kinode/packages/docs/.gitignore new file mode 100644 index 00000000..014c5e35 --- /dev/null +++ b/kinode/packages/docs/.gitignore @@ -0,0 +1,8 @@ +*/target/ +/target +pkg/*.wasm +*.swp +*.swo +*/wasi_snapshot_preview1.wasm +*/wit/ +*/process_env diff --git a/kinode/packages/docs/Cargo.lock b/kinode/packages/docs/Cargo.lock new file mode 100644 index 00000000..68c82135 --- /dev/null +++ b/kinode/packages/docs/Cargo.lock @@ -0,0 +1,3227 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "addr2line" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "ahash" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "allocator-api2" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" + +[[package]] +name = "alloy" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ba1c79677c9ce51c8d45e20845b05e6fb070ea2c863fba03ad6af2c778474bd" +dependencies = [ + "alloy-consensus", + "alloy-core", + "alloy-eips", + "alloy-genesis", + "alloy-json-rpc", + "alloy-provider", + "alloy-rpc-client", + "alloy-rpc-types", + "alloy-serde", + "alloy-transport-http", +] + +[[package]] +name = "alloy-chains" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b515e82c8468ddb6ff8db21c78a5997442f113fd8471fd5b2261b2602dd0c67" +dependencies = [ + "num_enum", + "strum", +] + +[[package]] +name = "alloy-consensus" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da374e868f54c7f4ad2ad56829827badca388efd645f8cf5fccc61c2b5343504" +dependencies = [ + "alloy-eips", + "alloy-primitives", + "alloy-rlp", + "alloy-serde", + "c-kzg", + "serde", +] + +[[package]] +name = "alloy-core" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "529fc6310dc1126c8de51c376cbc59c79c7f662bd742be7dc67055d5421a81b4" +dependencies = [ + "alloy-dyn-abi", + "alloy-json-abi", + "alloy-primitives", + "alloy-sol-types", +] + +[[package]] +name = "alloy-dyn-abi" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413902aa18a97569e60f679c23f46a18db1656d87ab4d4e49d0e1e52042f66df" +dependencies = [ + "alloy-json-abi", + "alloy-primitives", + "alloy-sol-type-parser", + "alloy-sol-types", + "const-hex", + "itoa", + "serde", + "serde_json", + "winnow 0.6.18", +] + +[[package]] +name = "alloy-eips" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f76ecab54890cdea1e4808fc0891c7e6cfcf71fe1a9fe26810c7280ef768f4ed" +dependencies = [ + "alloy-primitives", + "alloy-rlp", + "alloy-serde", + "c-kzg", + "once_cell", + "serde", + "sha2", +] + +[[package]] +name = "alloy-genesis" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bca15afde1b6d15e3fc1c97421262b1bbb37aee45752e3c8b6d6f13f776554ff" +dependencies = [ + "alloy-primitives", + "alloy-serde", + "serde", +] + +[[package]] +name = "alloy-json-abi" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc05b04ac331a9f07e3a4036ef7926e49a8bf84a99a1ccfc7e2ab55a5fcbb372" +dependencies = [ + "alloy-primitives", + "alloy-sol-type-parser", + "serde", + "serde_json", +] + +[[package]] +name = "alloy-json-rpc" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d6f34930b7e3e2744bcc79056c217f00cb2abb33bc5d4ff88da7623c5bb078b" +dependencies = [ + "alloy-primitives", + "serde", + "serde_json", + "thiserror", + "tracing", +] + +[[package]] +name = "alloy-network" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25f6895fc31b48fa12306ef9b4f78b7764f8bd6d7d91cdb0a40e233704a0f23f" +dependencies = [ + "alloy-consensus", + "alloy-eips", + "alloy-json-rpc", + "alloy-primitives", + "alloy-rpc-types-eth", + "alloy-serde", + "alloy-signer", + "alloy-sol-types", + "async-trait", + "auto_impl", + "futures-utils-wasm", + "thiserror", +] + +[[package]] +name = "alloy-primitives" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccb3ead547f4532bc8af961649942f0b9c16ee9226e26caa3f38420651cc0bf4" +dependencies = [ + "alloy-rlp", + "bytes", + "cfg-if", + "const-hex", + "derive_more", + "hex-literal", + "itoa", + "k256", + "keccak-asm", + "proptest", + "rand", + "ruint", + "serde", + "tiny-keccak", +] + +[[package]] +name = "alloy-provider" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c538bfa893d07e27cb4f3c1ab5f451592b7c526d511d62b576a2ce59e146e4a" +dependencies = [ + "alloy-chains", + "alloy-consensus", + "alloy-eips", + "alloy-json-rpc", + "alloy-network", + "alloy-primitives", + "alloy-rpc-client", + "alloy-rpc-types-eth", + "alloy-transport", + "alloy-transport-http", + "async-stream", + "async-trait", + "auto_impl", + "dashmap", + "futures", + "futures-utils-wasm", + "lru", + "pin-project", + "reqwest", + "serde", + "serde_json", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "alloy-rlp" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26154390b1d205a4a7ac7352aa2eb4f81f391399d4e2f546fb81a2f8bb383f62" +dependencies = [ + "alloy-rlp-derive", + "arrayvec", + "bytes", +] + +[[package]] +name = "alloy-rlp-derive" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d0f2d905ebd295e7effec65e5f6868d153936130ae718352771de3e7d03c75c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "alloy-rpc-client" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ba31bae67773fd5a60020bea900231f8396202b7feca4d0c70c6b59308ab4a8" +dependencies = [ + "alloy-json-rpc", + "alloy-transport", + "alloy-transport-http", + "futures", + "pin-project", + "reqwest", + "serde", + "serde_json", + "tokio", + "tokio-stream", + "tower", + "tracing", + "url", +] + +[[package]] +name = "alloy-rpc-types" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "184a7a42c7ba9141cc9e76368356168c282c3bc3d9e5d78f3556bdfe39343447" +dependencies = [ + "alloy-rpc-types-eth", + "alloy-serde", +] + +[[package]] +name = "alloy-rpc-types-eth" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab4123ee21f99ba4bd31bfa36ba89112a18a500f8b452f02b35708b1b951e2b9" +dependencies = [ + "alloy-consensus", + "alloy-eips", + "alloy-primitives", + "alloy-rlp", + "alloy-serde", + "alloy-sol-types", + "itertools 0.13.0", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "alloy-serde" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9416c52959e66ead795a11f4a86c248410e9e368a0765710e57055b8a1774dd6" +dependencies = [ + "alloy-primitives", + "serde", + "serde_json", +] + +[[package]] +name = "alloy-signer" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b33753c09fa1ad85e5b092b8dc2372f1e337a42e84b9b4cff9fede75ba4adb32" +dependencies = [ + "alloy-primitives", + "async-trait", + "auto_impl", + "elliptic-curve", + "k256", + "thiserror", +] + +[[package]] +name = "alloy-sol-macro" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b40397ddcdcc266f59f959770f601ce1280e699a91fc1862f29cef91707cd09" +dependencies = [ + "alloy-sol-macro-expander", + "alloy-sol-macro-input", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "alloy-sol-macro-expander" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "867a5469d61480fea08c7333ffeca52d5b621f5ca2e44f271b117ec1fc9a0525" +dependencies = [ + "alloy-sol-macro-input", + "const-hex", + "heck 0.5.0", + "indexmap", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.72", + "syn-solidity", + "tiny-keccak", +] + +[[package]] +name = "alloy-sol-macro-input" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e482dc33a32b6fadbc0f599adea520bd3aaa585c141a80b404d0a3e3fa72528" +dependencies = [ + "const-hex", + "dunce", + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.72", + "syn-solidity", +] + +[[package]] +name = "alloy-sol-type-parser" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbcba3ca07cf7975f15d871b721fb18031eec8bce51103907f6dcce00b255d98" +dependencies = [ + "serde", + "winnow 0.6.18", +] + +[[package]] +name = "alloy-sol-types" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a91ca40fa20793ae9c3841b83e74569d1cc9af29a2f5237314fd3452d51e38c7" +dependencies = [ + "alloy-primitives", + "alloy-sol-macro", + "const-hex", + "serde", +] + +[[package]] +name = "alloy-transport" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01b51a291f949f755e6165c3ed562883175c97423703703355f4faa4b7d0a57c" +dependencies = [ + "alloy-json-rpc", + "base64", + "futures-util", + "futures-utils-wasm", + "serde", + "serde_json", + "thiserror", + "tokio", + "tower", + "tracing", + "url", +] + +[[package]] +name = "alloy-transport-http" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86d65871f9f1cafe1ed25cde2f1303be83e6473e995a2d56c275ae4fcce6119c" +dependencies = [ + "alloy-json-rpc", + "alloy-transport", + "reqwest", + "serde_json", + "tower", + "tracing", + "url", +] + +[[package]] +name = "anyhow" +version = "1.0.86" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" + +[[package]] +name = "ark-ff" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b3235cc41ee7a12aaaf2c575a2ad7b46713a8a50bda2fc3b003a04845c05dd6" +dependencies = [ + "ark-ff-asm 0.3.0", + "ark-ff-macros 0.3.0", + "ark-serialize 0.3.0", + "ark-std 0.3.0", + "derivative", + "num-bigint", + "num-traits", + "paste", + "rustc_version 0.3.3", + "zeroize", +] + +[[package]] +name = "ark-ff" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" +dependencies = [ + "ark-ff-asm 0.4.2", + "ark-ff-macros 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", + "derivative", + "digest 0.10.7", + "itertools 0.10.5", + "num-bigint", + "num-traits", + "paste", + "rustc_version 0.4.0", + "zeroize", +] + +[[package]] +name = "ark-ff-asm" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db02d390bf6643fb404d3d22d31aee1c4bc4459600aef9113833d17e786c6e44" +dependencies = [ + "quote", + "syn 1.0.109", +] + +[[package]] +name = "ark-ff-asm" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348" +dependencies = [ + "quote", + "syn 1.0.109", +] + +[[package]] +name = "ark-ff-macros" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db2fd794a08ccb318058009eefdf15bcaaaaf6f8161eb3345f907222bac38b20" +dependencies = [ + "num-bigint", + "num-traits", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "ark-ff-macros" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565" +dependencies = [ + "num-bigint", + "num-traits", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "ark-serialize" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d6c2b318ee6e10f8c2853e73a83adc0ccb88995aa978d8a3408d492ab2ee671" +dependencies = [ + "ark-std 0.3.0", + "digest 0.9.0", +] + +[[package]] +name = "ark-serialize" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" +dependencies = [ + "ark-std 0.4.0", + "digest 0.10.7", + "num-bigint", +] + +[[package]] +name = "ark-std" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" +dependencies = [ + "num-traits", + "rand", +] + +[[package]] +name = "ark-std" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" +dependencies = [ + "num-traits", + "rand", +] + +[[package]] +name = "arrayvec" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" + +[[package]] +name = "async-stream" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "async-trait" +version = "0.1.81" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "auto_impl" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "autocfg" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" + +[[package]] +name = "backtrace" +version = "0.3.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base16ct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "base64ct" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" + +[[package]] +name = "bincode" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +dependencies = [ + "serde", +] + +[[package]] +name = "bit-set" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + +[[package]] +name = "bitflags" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" + +[[package]] +name = "bitvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "blst" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4378725facc195f1a538864863f6de233b500a8862747e7f165078a419d5e874" +dependencies = [ + "cc", + "glob", + "threadpool", + "zeroize", +] + +[[package]] +name = "bumpalo" +version = "3.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" + +[[package]] +name = "byte-slice-cast" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" +dependencies = [ + "serde", +] + +[[package]] +name = "c-kzg" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdf100c4cea8f207e883ff91ca886d621d8a166cb04971dfaa9bb8fd99ed95df" +dependencies = [ + "blst", + "cc", + "glob", + "hex", + "libc", + "serde", +] + +[[package]] +name = "cc" +version = "1.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "504bdec147f2cc13c8b57ed9401fd8a147cc66b67ad5cb241394244f2c947549" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "const-hex" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8a24a26d37e1ffd45343323dc9fe6654ceea44c12f2fcb3d7ac29e610bc6" +dependencies = [ + "cfg-if", + "cpufeatures", + "hex", + "proptest", + "serde", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" + +[[package]] +name = "cpufeatures" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +dependencies = [ + "libc", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "crypto-bigint" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +dependencies = [ + "generic-array", + "rand_core", + "subtle", + "zeroize", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "dashmap" +version = "5.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +dependencies = [ + "cfg-if", + "hashbrown", + "lock_api", + "once_cell", + "parking_lot_core", +] + +[[package]] +name = "der" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +dependencies = [ + "const-oid", + "zeroize", +] + +[[package]] +name = "derivative" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "derive_more" +version = "0.99.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version 0.4.0", + "syn 2.0.72", +] + +[[package]] +name = "digest" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +dependencies = [ + "generic-array", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "const-oid", + "crypto-common", + "subtle", +] + +[[package]] +name = "docs" +version = "0.1.0" +dependencies = [ + "anyhow", + "kinode_process_lib", + "process_macros", + "serde", + "serde_json", + "wit-bindgen", +] + +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "ecdsa" +version = "0.16.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" +dependencies = [ + "der", + "digest 0.10.7", + "elliptic-curve", + "rfc6979", + "signature", + "spki", +] + +[[package]] +name = "either" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" + +[[package]] +name = "elliptic-curve" +version = "0.13.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" +dependencies = [ + "base16ct", + "crypto-bigint", + "digest 0.10.7", + "ff", + "generic-array", + "group", + "pkcs8", + "rand_core", + "sec1", + "subtle", + "zeroize", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "errno" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "fastrand" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" + +[[package]] +name = "fastrlp" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" +dependencies = [ + "arrayvec", + "auto_impl", + "bytes", +] + +[[package]] +name = "ff" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +dependencies = [ + "rand_core", + "subtle", +] + +[[package]] +name = "fixed-hash" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" +dependencies = [ + "byteorder", + "rand", + "rustc-hex", + "static_assertions", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futures" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" + +[[package]] +name = "futures-executor" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-macro" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "futures-sink" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" + +[[package]] +name = "futures-task" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" + +[[package]] +name = "futures-util" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "futures-utils-wasm" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42012b0f064e01aa58b545fe3727f90f7dd4020f4a3ea735b50344965f5a57e9" + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", + "zeroize", +] + +[[package]] +name = "getrandom" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "gimli" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" + +[[package]] +name = "glob" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + +[[package]] +name = "group" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +dependencies = [ + "ff", + "rand_core", + "subtle", +] + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", + "allocator-api2", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hermit-abi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +dependencies = [ + "serde", +] + +[[package]] +name = "hex-literal" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +dependencies = [ + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" + +[[package]] +name = "hyper" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "pin-project-lite", + "socket2", + "tokio", + "tower", + "tower-service", + "tracing", +] + +[[package]] +name = "id-arena" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005" + +[[package]] +name = "idna" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "impl-codec" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f" +dependencies = [ + "parity-scale-codec", +] + +[[package]] +name = "impl-trait-for-tuples" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "indexmap" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0" +dependencies = [ + "equivalent", + "hashbrown", + "serde", +] + +[[package]] +name = "ipnet" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" + +[[package]] +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" + +[[package]] +name = "js-sys" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "k256" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" +dependencies = [ + "cfg-if", + "ecdsa", + "elliptic-curve", + "once_cell", + "sha2", +] + +[[package]] +name = "keccak-asm" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "422fbc7ff2f2f5bdffeb07718e5a5324dca72b0c9293d50df4026652385e3314" +dependencies = [ + "digest 0.10.7", + "sha3-asm", +] + +[[package]] +name = "kinode_process_lib" +version = "0.9.0" +source = "git+https://github.com/kinode-dao/process_lib?rev=db4a6c1#db4a6c19043807dbbfaeb517561db8931b4a3dd6" +dependencies = [ + "alloy", + "alloy-primitives", + "alloy-sol-macro", + "alloy-sol-types", + "anyhow", + "bincode", + "http", + "mime_guess", + "rand", + "rmp-serde", + "serde", + "serde_json", + "thiserror", + "url", + "wit-bindgen", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "leb128" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" + +[[package]] +name = "libc" +version = "0.2.155" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" + +[[package]] +name = "libm" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" + +[[package]] +name = "linux-raw-sys" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" + +[[package]] +name = "lock_api" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" + +[[package]] +name = "lru" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mime_guess" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" +dependencies = [ + "mime", + "unicase", +] + +[[package]] +name = "miniz_oxide" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" +dependencies = [ + "hermit-abi", + "libc", + "wasi", + "windows-sys 0.52.0", +] + +[[package]] +name = "native-tls" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "num-bigint" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", + "libm", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_enum" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" +dependencies = [ + "num_enum_derive", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "object" +version = "0.36.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + +[[package]] +name = "openssl" +version = "0.10.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" +dependencies = [ + "bitflags", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "openssl-probe" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" + +[[package]] +name = "openssl-sys" +version = "0.9.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "parity-scale-codec" +version = "3.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" +dependencies = [ + "arrayvec", + "bitvec", + "byte-slice-cast", + "impl-trait-for-tuples", + "parity-scale-codec-derive", + "serde", +] + +[[package]] +name = "parity-scale-codec-derive" +version = "3.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets 0.52.6", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "percent-encoding" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" + +[[package]] +name = "pest" +version = "2.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" +dependencies = [ + "memchr", + "thiserror", + "ucd-trie", +] + +[[package]] +name = "pin-project" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "pkg-config" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" + +[[package]] +name = "ppv-lite86" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "primitive-types" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" +dependencies = [ + "fixed-hash", + "impl-codec", + "uint", +] + +[[package]] +name = "proc-macro-crate" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" +dependencies = [ + "toml_edit", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro2" +version = "1.0.86" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "process_macros" +version = "0.1.0" +source = "git+https://github.com/kinode-dao/process_macros?rev=626e501#626e501d351e3365480ec6f770d474ed4ae339bf" +dependencies = [ + "quote", + "syn 2.0.72", +] + +[[package]] +name = "proptest" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +dependencies = [ + "bit-set", + "bit-vec", + "bitflags", + "lazy_static", + "num-traits", + "rand", + "rand_chacha", + "rand_xorshift", + "regex-syntax", + "rusty-fork", + "tempfile", + "unarray", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rand_xorshift" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +dependencies = [ + "rand_core", +] + +[[package]] +name = "redox_syscall" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex-syntax" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" + +[[package]] +name = "reqwest" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" +dependencies = [ + "base64", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-tls", + "hyper-util", + "ipnet", + "js-sys", + "log", + "mime", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls-pemfile", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-native-tls", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg", +] + +[[package]] +name = "rfc6979" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +dependencies = [ + "hmac", + "subtle", +] + +[[package]] +name = "rlp" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" +dependencies = [ + "bytes", + "rustc-hex", +] + +[[package]] +name = "rmp" +version = "0.8.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4" +dependencies = [ + "byteorder", + "num-traits", + "paste", +] + +[[package]] +name = "rmp-serde" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db" +dependencies = [ + "byteorder", + "rmp", + "serde", +] + +[[package]] +name = "ruint" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c3cc4c2511671f327125da14133d0c5c5d137f006a1017a16f557bc85b16286" +dependencies = [ + "alloy-rlp", + "ark-ff 0.3.0", + "ark-ff 0.4.2", + "bytes", + "fastrlp", + "num-bigint", + "num-traits", + "parity-scale-codec", + "primitive-types", + "proptest", + "rand", + "rlp", + "ruint-macro", + "serde", + "valuable", + "zeroize", +] + +[[package]] +name = "ruint-macro" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18" + +[[package]] +name = "rustc-demangle" +version = "0.1.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" + +[[package]] +name = "rustc-hex" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" + +[[package]] +name = "rustc_version" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" +dependencies = [ + "semver 0.11.0", +] + +[[package]] +name = "rustc_version" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +dependencies = [ + "semver 1.0.23", +] + +[[package]] +name = "rustix" +version = "0.38.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" +dependencies = [ + "bitflags", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustls-pemfile" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425" +dependencies = [ + "base64", + "rustls-pki-types", +] + +[[package]] +name = "rustls-pki-types" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0" + +[[package]] +name = "rustversion" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" + +[[package]] +name = "rusty-fork" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" +dependencies = [ + "fnv", + "quick-error", + "tempfile", + "wait-timeout", +] + +[[package]] +name = "ryu" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] +name = "schannel" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "sec1" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +dependencies = [ + "base16ct", + "der", + "generic-array", + "pkcs8", + "subtle", + "zeroize", +] + +[[package]] +name = "security-framework" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +dependencies = [ + "bitflags", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" +dependencies = [ + "semver-parser", +] + +[[package]] +name = "semver" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" + +[[package]] +name = "semver-parser" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" +dependencies = [ + "pest", +] + +[[package]] +name = "serde" +version = "1.0.205" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e33aedb1a7135da52b7c21791455563facbbcc43d0f0f66165b42c21b3dfb150" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.205" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "692d6f5ac90220161d6774db30c662202721e64aed9058d2c394f451261420c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "serde_json" +version = "1.0.122" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" +dependencies = [ + "itoa", + "memchr", + "ryu", + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "sha2" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest 0.10.7", +] + +[[package]] +name = "sha3-asm" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d79b758b7cb2085612b11a235055e485605a5103faccdd633f35bd7aee69dd" +dependencies = [ + "cc", + "cfg-if", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest 0.10.7", + "rand_core", +] + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" + +[[package]] +name = "socket2" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "spdx" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47317bbaf63785b53861e1ae2d11b80d6b624211d42cb20efcd210ee6f8a14bc" +dependencies = [ + "smallvec", +] + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "strum" +version = "0.26.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" +dependencies = [ + "strum_macros", +] + +[[package]] +name = "strum_macros" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.72", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn-solidity" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c837dc8852cb7074e46b444afb81783140dab12c58867b49fb3898fbafedf7ea" +dependencies = [ + "paste", + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "tempfile" +version = "3.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" +dependencies = [ + "cfg-if", + "fastrand", + "once_cell", + "rustix", + "windows-sys 0.59.0", +] + +[[package]] +name = "thiserror" +version = "1.0.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "threadpool" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" +dependencies = [ + "num_cpus", +] + +[[package]] +name = "tiny-keccak" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" +dependencies = [ + "crunchy", +] + +[[package]] +name = "tinyvec" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.39.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio", + "pin-project-lite", + "socket2", + "tokio-macros", + "windows-sys 0.52.0", +] + +[[package]] +name = "tokio-macros" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", + "tokio-util", +] + +[[package]] +name = "tokio-util" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml_datetime" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" + +[[package]] +name = "toml_edit" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +dependencies = [ + "indexmap", + "toml_datetime", + "winnow 0.5.40", +] + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-core", + "futures-util", + "pin-project", + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-layer" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" + +[[package]] +name = "tower-service" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" + +[[package]] +name = "tracing" +version = "0.1.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "tracing-core" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +dependencies = [ + "once_cell", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typenum" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" + +[[package]] +name = "ucd-trie" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" + +[[package]] +name = "uint" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" +dependencies = [ + "byteorder", + "crunchy", + "hex", + "static_assertions", +] + +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + +[[package]] +name = "unicase" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" +dependencies = [ + "version_check", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "unicode-normalization" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-segmentation" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" + +[[package]] +name = "unicode-xid" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" + +[[package]] +name = "url" +version = "2.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", +] + +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "wait-timeout" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" +dependencies = [ + "libc", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.72", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" + +[[package]] +name = "wasm-encoder" +version = "0.202.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfd106365a7f5f7aa3c1916a98cbb3ad477f5ff96ddb130285a91c6e7429e67a" +dependencies = [ + "leb128", +] + +[[package]] +name = "wasm-metadata" +version = "0.202.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "094aea3cb90e09f16ee25a4c0e324b3e8c934e7fd838bfa039aef5352f44a917" +dependencies = [ + "anyhow", + "indexmap", + "serde", + "serde_derive", + "serde_json", + "spdx", + "wasm-encoder", + "wasmparser", +] + +[[package]] +name = "wasmparser" +version = "0.202.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6998515d3cf3f8b980ef7c11b29a9b1017d4cf86b99ae93b546992df9931413" +dependencies = [ + "bitflags", + "indexmap", + "semver 1.0.23", +] + +[[package]] +name = "web-sys" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.6.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] +name = "wit-bindgen" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb4e7653763780be47e38f479e9aa83c768aa6a3b2ed086dc2826fdbbb7e7f5" +dependencies = [ + "wit-bindgen-rt", + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen-core" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b67e11c950041849a10828c7600ea62a4077c01e8af72e8593253575428f91b" +dependencies = [ + "anyhow", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rt" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0780cf7046630ed70f689a098cd8d56c5c3b22f2a7379bbdb088879963ff96" +dependencies = [ + "bitflags", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30acbe8fb708c3a830a33c4cb705df82659bf831b492ec6ca1a17a369cfeeafb" +dependencies = [ + "anyhow", + "heck 0.4.1", + "indexmap", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b1b06eae85feaecdf9f2854f7cac124e00d5a6e5014bfb02eb1ecdeb5f265b9" +dependencies = [ + "anyhow", + "proc-macro2", + "quote", + "syn 2.0.72", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.202.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c836b1fd9932de0431c1758d8be08212071b6bba0151f7bac826dbc4312a2a9" +dependencies = [ + "anyhow", + "bitflags", + "indexmap", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.202.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "744237b488352f4f27bca05a10acb79474415951c450e52ebd0da784c1df2bcc" +dependencies = [ + "anyhow", + "id-arena", + "indexmap", + "log", + "semver 1.0.23", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "zerocopy" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +dependencies = [ + "byteorder", + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] +name = "zeroize" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" +dependencies = [ + "zeroize_derive", +] + +[[package]] +name = "zeroize_derive" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] diff --git a/kinode/packages/docs/Cargo.toml b/kinode/packages/docs/Cargo.toml new file mode 100644 index 00000000..4eb02ff5 --- /dev/null +++ b/kinode/packages/docs/Cargo.toml @@ -0,0 +1,10 @@ +[workspace] +resolver = "2" +members = [ + "docs", +] + +[profile.release] +panic = "abort" +opt-level = "s" +lto = true diff --git a/kinode/packages/docs/docs/Cargo.toml b/kinode/packages/docs/docs/Cargo.toml new file mode 100644 index 00000000..91ae32c9 --- /dev/null +++ b/kinode/packages/docs/docs/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "docs" +version = "0.1.0" +edition = "2021" + +[dependencies] +anyhow = "1.0" +kinode_process_lib = { git = "https://github.com/kinode-dao/process_lib", rev = "db4a6c1" } +process_macros = { git = "https://github.com/kinode-dao/process_macros", rev = "626e501" } +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +wit-bindgen = "0.24.0" + +[lib] +crate-type = ["cdylib"] + +[package.metadata.component] +package = "kinode:process" diff --git a/kinode/packages/docs/docs/src/icon b/kinode/packages/docs/docs/src/icon new file mode 100644 index 00000000..a5e80730 --- /dev/null +++ b/kinode/packages/docs/docs/src/icon @@ -0,0 +1 @@ +data:image/png;base64,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 \ No newline at end of file diff --git a/kinode/packages/docs/docs/src/lib.rs b/kinode/packages/docs/docs/src/lib.rs new file mode 100644 index 00000000..6c482fc5 --- /dev/null +++ b/kinode/packages/docs/docs/src/lib.rs @@ -0,0 +1,32 @@ +use kinode_process_lib::{ + await_message, call_init, + homepage::add_to_homepage, + http::server::{HttpBindingConfig, HttpServer}, + println, Address, +}; + +wit_bindgen::generate!({ + path: "target/wit", + world: "process-v0", +}); + +const ICON: &str = include_str!("icon"); + +call_init!(init); +fn init(our: Address) { + println!("begin"); + + let mut server = HttpServer::new(5); + server + .serve_ui(&our, "ui", vec!["/"], HttpBindingConfig::default()) + .unwrap(); + + add_to_homepage("Docs", Some(ICON), Some("index.html"), None); + + loop { + match await_message() { + Err(send_error) => println!("got SendError: {send_error}"), + Ok(ref _message) => println!("got message"), + } + } +} diff --git a/kinode/packages/docs/metadata.json b/kinode/packages/docs/metadata.json new file mode 100644 index 00000000..fbbdb84c --- /dev/null +++ b/kinode/packages/docs/metadata.json @@ -0,0 +1,18 @@ +{ + "name": "docs", + "description": "", + "image": "", + "properties": { + "package_name": "docs", + "current_version": "0.1.0", + "publisher": "sys", + "mirrors": [], + "code_hashes": { + "0.1.0": "" + }, + "wit_version": 0, + "dependencies": [] + }, + "external_url": "", + "animation_url": "" +} diff --git a/kinode/packages/docs/pkg/manifest.json b/kinode/packages/docs/pkg/manifest.json new file mode 100644 index 00000000..0e16135f --- /dev/null +++ b/kinode/packages/docs/pkg/manifest.json @@ -0,0 +1,18 @@ +[ + { + "process_name": "docs", + "process_wasm_path": "/docs.wasm", + "on_exit": "Restart", + "request_networking": false, + "request_capabilities": [ + "homepage:homepage:sys", + "http_server:distro:sys", + "vfs:distro:sys" + ], + "grant_capabilities": [ + "http_server:distro:sys", + "vfs:distro:sys" + ], + "public": false + } +]