diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..ad98348 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,5 @@ +[env] +# Temporary hack for Tangle blueprints to get the workspace root +# +# See: https://github.com/rust-lang/cargo/issues/3946#issuecomment-973132993 +CARGO_WORKSPACE_DIR = { value = "", relative = true } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 2c62d54..90a1305 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "Inflector" @@ -128,9 +128,9 @@ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "alloy" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbcc41e8a11a4975b18ec6afba2cc48d591fa63336a4c526dacb50479a8d6b35" +checksum = "6d2cc5aeb8dfa1e451a49fac87bc4b86c5de40ebea153ed88e83eb92b8151e74" dependencies = [ "alloy-consensus", "alloy-contract", @@ -155,23 +155,23 @@ dependencies = [ [[package]] name = "alloy-chains" -version = "0.1.62" +version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1317fde6d2d3cd6082a15144c23230697a5e1a91a27d1facc146715d3b4b2046" +checksum = "963fc7ac17f25d92c237448632330eb87b39ba8aa0209d4b517069a05b57db62" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "num_enum", "strum 0.27.1", ] [[package]] name = "alloy-consensus" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4138dc275554afa6f18c4217262ac9388790b2fc393c2dfe03c51d357abf013" +checksum = "69e32ef5c74bbeb1733c37f4ac7f866f8c8af208b7b4265e21af609dcac5bd5e" dependencies = [ "alloy-eips", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", "alloy-serde", "alloy-trie", @@ -184,13 +184,13 @@ dependencies = [ [[package]] name = "alloy-consensus-any" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa04e1882c31288ce1028fdf31b6ea94cfa9eafa2e497f903ded631c8c6a42c" +checksum = "0fa13b7b1e1e3fedc42f0728103bfa3b4d566d3d42b606db449504d88dbdbdcf" dependencies = [ "alloy-consensus", "alloy-eips", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", "alloy-serde", "serde", @@ -198,53 +198,65 @@ dependencies = [ [[package]] name = "alloy-contract" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f21886c1fea0626f755a49b2ac653b396fb345233f6170db2da3d0ada31560c" +checksum = "ee6180fb232becdea70fad57c63b6967f01f74ab9595671b870f504116dd29de" dependencies = [ "alloy-dyn-abi", "alloy-json-abi", "alloy-network", "alloy-network-primitives", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-provider", "alloy-pubsub", "alloy-rpc-types-eth", - "alloy-sol-types 0.8.21", + "alloy-sol-types 0.8.23", "alloy-transport", "futures", "futures-util", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "alloy-core" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "482f377cebceed4bb1fb5e7970f0805e2ab123d06701be9351b67ed6341e74aa" +checksum = "ca1380cc3c81b83d5234865779494970c83b5893b423c59cdd68c3cd1ed0b671" dependencies = [ "alloy-dyn-abi", "alloy-json-abi", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", - "alloy-sol-types 0.8.21", + "alloy-sol-types 0.8.23", ] [[package]] name = "alloy-dyn-abi" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "555896f0b8578adb522b1453b6e6cc6704c3027bd0af20058befdde992cee8e9" +checksum = "7078bef2bc353c1d1a97b44981d0186198be320038fbfbb0b37d1dd822a555d3" dependencies = [ "alloy-json-abi", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-sol-type-parser", - "alloy-sol-types 0.8.21", + "alloy-sol-types 0.8.23", "const-hex", "itoa", "serde", "serde_json", - "winnow 0.7.3", + "winnow 0.7.4", +] + +[[package]] +name = "alloy-eip2124" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "675264c957689f0fd75f5993a73123c2cc3b5c235a38f5b9037fe6c826bfb2c0" +dependencies = [ + "alloy-primitives 0.8.23", + "alloy-rlp", + "crc", + "thiserror 2.0.12", ] [[package]] @@ -253,35 +265,37 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0069cf0642457f87a01a014f6dc29d5d893cd4fd8fddf0c3cdfad1bb3ebafc41" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", "serde", ] [[package]] name = "alloy-eip7702" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cabf647eb4650c91a9d38cb6f972bb320009e7e9d61765fb688a86f1563b33e8" +checksum = "9b15b13d38b366d01e818fe8e710d4d702ef7499eacd44926a06171dd9585d0c" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", - "derive_more 1.0.0", "k256", "serde", + "thiserror 2.0.12", ] [[package]] name = "alloy-eips" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52dd5869ed09e399003e0e0ec6903d981b2a92e74c5d37e6b40890bad2517526" +checksum = "5591581ca2ab0b3e7226a4047f9a1bfcf431da1d0cce3752fda609fea3c27e37" dependencies = [ + "alloy-eip2124", "alloy-eip2930", "alloy-eip7702", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", "alloy-serde", + "auto_impl", "c-kzg", "derive_more 1.0.0", "once_cell", @@ -291,12 +305,12 @@ dependencies = [ [[package]] name = "alloy-genesis" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7d2a7fe5c1a9bd6793829ea21a636f30fc2b3f5d2e7418ba86d96e41dd1f460" +checksum = "0cded3a2d4bd7173f696458c5d4c98c18a628dfcc9f194385e80a486e412e2e0" dependencies = [ "alloy-eips", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-serde", "alloy-trie", "serde", @@ -304,11 +318,11 @@ dependencies = [ [[package]] name = "alloy-json-abi" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4012581681b186ba0882007ed873987cc37f86b1b488fe6b91d5efd0b585dc41" +checksum = "ec80745c33797e8baf547a8cfeb850e60d837fe9b9e67b3f579c1fcd26f527e9" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-sol-type-parser", "serde", "serde_json", @@ -316,52 +330,52 @@ dependencies = [ [[package]] name = "alloy-json-rpc" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2008bedb8159a255b46b7c8614516eda06679ea82f620913679afbd8031fea72" +checksum = "762414662d793d7aaa36ee3af6928b6be23227df1681ce9c039f6f11daadef64" dependencies = [ - "alloy-primitives 0.8.21", - "alloy-sol-types 0.8.21", + "alloy-primitives 0.8.23", + "alloy-sol-types 0.8.23", "serde", "serde_json", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", ] [[package]] name = "alloy-network" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4556f01fe41d0677495df10a648ddcf7ce118b0e8aa9642a0e2b6dd1fb7259de" +checksum = "8be03f2ebc00cf88bd06d3c6caf387dceaa9c7e6b268216779fa68a9bf8ab4e6" dependencies = [ "alloy-consensus", "alloy-consensus-any", "alloy-eips", "alloy-json-rpc", "alloy-network-primitives", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rpc-types-any", "alloy-rpc-types-eth", "alloy-serde", "alloy-signer", - "alloy-sol-types 0.8.21", + "alloy-sol-types 0.8.23", "async-trait", "auto_impl", "futures-utils-wasm", "serde", "serde_json", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "alloy-network-primitives" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f31c3c6b71340a1d076831823f09cb6e02de01de5c6630a9631bdb36f947ff80" +checksum = "3a00ce618ae2f78369918be0c20f620336381502c83b6ed62c2f7b2db27698b0" dependencies = [ "alloy-consensus", "alloy-eips", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-serde", "serde", ] @@ -388,18 +402,18 @@ dependencies = [ [[package]] name = "alloy-primitives" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "478bedf4d24e71ea48428d1bc278553bd7c6ae07c30ca063beb0b09fe58a9e74" +checksum = "eacedba97e65cdc7ab592f2b22ef5d3ab8d60b2056bc3a6e6363577e8270ec6f" dependencies = [ "alloy-rlp", "bytes", "cfg-if", "const-hex", - "derive_more 1.0.0", + "derive_more 2.0.1", "foldhash", "hashbrown 0.15.2", - "indexmap 2.7.1", + "indexmap 2.8.0", "itoa", "k256", "keccak-asm", @@ -415,9 +429,9 @@ dependencies = [ [[package]] name = "alloy-provider" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a22c4441b3ebe2d77fa9cf629ba68c3f713eb91779cff84275393db97eddd82" +checksum = "cbe0a2acff0c4bd1669c71251ce10fc455cbffa1b4d0a817d5ea4ba7e5bb3db7" dependencies = [ "alloy-chains", "alloy-consensus", @@ -425,10 +439,15 @@ dependencies = [ "alloy-json-rpc", "alloy-network", "alloy-network-primitives", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-pubsub", "alloy-rpc-client", + "alloy-rpc-types-anvil", + "alloy-rpc-types-debug", "alloy-rpc-types-eth", + "alloy-rpc-types-trace", + "alloy-rpc-types-txpool", + "alloy-sol-types 0.8.23", "alloy-transport", "alloy-transport-http", "alloy-transport-ipc", @@ -439,14 +458,13 @@ dependencies = [ "dashmap", "futures", "futures-utils-wasm", - "lru 0.12.5", + "lru 0.13.0", "parking_lot", "pin-project", - "reqwest 0.12.12", - "schnellru", + "reqwest 0.12.14", "serde", "serde_json", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tracing", "url", @@ -455,12 +473,12 @@ dependencies = [ [[package]] name = "alloy-pubsub" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2269fd635f7b505f27c63a3cb293148cd02301efce4c8bdd9ff54fbfc4a20e23" +checksum = "de3a68996f193f542f9e29c88dfa8ed1369d6ee04fa764c1bf23dc11b2f9e4a2" dependencies = [ "alloy-json-rpc", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-transport", "bimap", "futures", @@ -491,17 +509,17 @@ checksum = "a40e1ef334153322fd878d07e86af7a529bcb86b2439525920a88eba87bcf943" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "alloy-rpc-client" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d06a292b37e182e514903ede6e623b9de96420e8109ce300da288a96d88b7e4b" +checksum = "b37cc3c7883dc41be1b01460127ad7930466d0a4bb6ba15a02ee34d2745e2d7c" dependencies = [ "alloy-json-rpc", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-pubsub", "alloy-transport", "alloy-transport-http", @@ -509,7 +527,7 @@ dependencies = [ "alloy-transport-ws", "futures", "pin-project", - "reqwest 0.12.12", + "reqwest 0.12.14", "serde", "serde_json", "tokio", @@ -522,37 +540,62 @@ dependencies = [ [[package]] name = "alloy-rpc-types" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9383845dd924939e7ab0298bbfe231505e20928907d7905aa3bf112287305e06" +checksum = "6f18e68a3882f372e045ddc89eb455469347767d17878ca492cfbac81e71a111" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", + "alloy-rpc-types-anvil", "alloy-rpc-types-engine", "alloy-rpc-types-eth", + "alloy-rpc-types-trace", + "alloy-rpc-types-txpool", + "alloy-serde", + "serde", +] + +[[package]] +name = "alloy-rpc-types-anvil" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10d06300df4a87d960add35909240fc72da355dd2ac926fa6999f9efafbdc5a7" +dependencies = [ + "alloy-primitives 0.8.23", + "alloy-rpc-types-eth", "alloy-serde", "serde", ] [[package]] name = "alloy-rpc-types-any" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca445cef0eb6c2cf51cfb4e214fbf1ebd00893ae2e6f3b944c8101b07990f988" +checksum = "318ae46dd12456df42527c3b94c1ae9001e1ceb707f7afe2c7807ac4e49ebad9" dependencies = [ "alloy-consensus-any", "alloy-rpc-types-eth", "alloy-serde", ] +[[package]] +name = "alloy-rpc-types-debug" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2834b7012054cb2f90ee9893b7cc97702edca340ec1ef386c30c42e55e6cd691" +dependencies = [ + "alloy-primitives 0.8.23", + "serde", +] + [[package]] name = "alloy-rpc-types-engine" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f821f30344862a0b6eb9a1c2eb91dfb2ff44c7489f37152a526cdcab79264" +checksum = "e83dde9fcf1ccb9b815cc0c89bba26bbbbaae5150a53ae624ed0fc63cb3676c1" dependencies = [ "alloy-consensus", "alloy-eips", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", "alloy-serde", "derive_more 1.0.0", @@ -562,83 +605,110 @@ dependencies = [ [[package]] name = "alloy-rpc-types-eth" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0938bc615c02421bd86c1733ca7205cc3d99a122d9f9bff05726bd604b76a5c2" +checksum = "8b4dbee4d82f8a22dde18c28257bed759afeae7ba73da4a1479a039fd1445d04" dependencies = [ "alloy-consensus", "alloy-consensus-any", "alloy-eips", "alloy-network-primitives", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", "alloy-serde", - "alloy-sol-types 0.8.21", - "itertools 0.13.0", + "alloy-sol-types 0.8.23", + "itertools 0.14.0", + "serde", + "serde_json", + "thiserror 2.0.12", +] + +[[package]] +name = "alloy-rpc-types-trace" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bd951155515fa452a2ca4b5434d4b3ab742bcd3d1d1b9a91704bcef5b8d2604" +dependencies = [ + "alloy-primitives 0.8.23", + "alloy-rpc-types-eth", + "alloy-serde", "serde", "serde_json", - "thiserror 2.0.11", + "thiserror 2.0.12", +] + +[[package]] +name = "alloy-rpc-types-txpool" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21d8dd5bd94993eda3d56a8c4c0d693548183a35462523ffc4385c0b020d3b0c" +dependencies = [ + "alloy-primitives 0.8.23", + "alloy-rpc-types-eth", + "alloy-serde", + "serde", ] [[package]] name = "alloy-serde" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae0465c71d4dced7525f408d84873aeebb71faf807d22d74c4a426430ccd9b55" +checksum = "8732058f5ca28c1d53d241e8504620b997ef670315d7c8afab856b3e3b80d945" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "serde", "serde_json", ] [[package]] name = "alloy-signer" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bfa395ad5cc952c82358d31e4c68b27bf4a89a5456d9b27e226e77dac50e4ff" +checksum = "f96b3526fdd779a4bd0f37319cfb4172db52a7ac24cdbb8804b72091c18e1701" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "async-trait", "auto_impl", + "either", "elliptic-curve", "k256", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "alloy-signer-aws" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eb06810c34427d499863817eb506acf57cb9ded9224b374116cae4e22dbd4e9" +checksum = "f6f7fae8dec636317c89e08498675c9421a214f1791a59dcaea2094c1a2dbf07" dependencies = [ "alloy-consensus", "alloy-network", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-signer", "async-trait", "aws-sdk-kms", "k256", "spki", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", ] [[package]] name = "alloy-signer-local" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbdc63ce9eda1283fcbaca66ba4a414b841c0e3edbeef9c86a71242fc9e84ccc" +checksum = "fe8f78cd6b7501c7e813a1eb4a087b72d23af51f5bb66d4e948dc840bdd207d8" dependencies = [ "alloy-consensus", "alloy-network", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-signer", "async-trait", "coins-bip32 0.12.0", "coins-bip39 0.12.0", "k256", "rand 0.8.5", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -653,69 +723,70 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "syn-solidity 0.4.2", "tiny-keccak", ] [[package]] name = "alloy-sol-macro" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2708e27f58d747423ae21d31b7a6625159bd8d867470ddd0256f396a68efa11" +checksum = "3637022e781bc73a9e300689cd91105a0e6be00391dd4e2110a71cc7e9f20a94" dependencies = [ "alloy-sol-macro-expander", "alloy-sol-macro-input", "proc-macro-error2", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "alloy-sol-macro-expander" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6b7984d7e085dec382d2c5ef022b533fcdb1fe6129200af30ebf5afddb6a361" +checksum = "3b9bd22d0bba90e40f40c625c33d39afb7d62b22192476a2ce1dcf8409dce880" dependencies = [ "alloy-json-abi", "alloy-sol-macro-input", "const-hex", "heck 0.5.0", - "indexmap 2.7.1", + "indexmap 2.8.0", "proc-macro-error2", "proc-macro2", "quote", - "syn 2.0.98", - "syn-solidity 0.8.21", + "syn 2.0.100", + "syn-solidity 0.8.23", "tiny-keccak", ] [[package]] name = "alloy-sol-macro-input" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33d6a9fc4ed1a3c70bdb2357bec3924551c1a59f24e5a04a74472c755b37f87d" +checksum = "05ae4646e8123ec2fd10f9c22e361ffe4365c42811431829c2eabae528546bcc" dependencies = [ "alloy-json-abi", "const-hex", "dunce", "heck 0.5.0", + "macro-string", "proc-macro2", "quote", "serde_json", - "syn 2.0.98", - "syn-solidity 0.8.21", + "syn 2.0.100", + "syn-solidity 0.8.23", ] [[package]] name = "alloy-sol-type-parser" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b1b3e9a48a6dd7bb052a111c8d93b5afc7956ed5e2cb4177793dc63bb1d2a36" +checksum = "488a747fdcefeec5c1ed5aa9e08becd775106777fdeae2a35730729fc8a95910" dependencies = [ "serde", - "winnow 0.7.3", + "winnow 0.7.4", ] [[package]] @@ -732,30 +803,29 @@ dependencies = [ [[package]] name = "alloy-sol-types" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6044800da35c38118fd4b98e18306bd3b91af5dedeb54c1b768cf1b4fb68f549" +checksum = "767957235807b021126dca1598ac3ef477007eace07961607dc5f490550909c7" dependencies = [ "alloy-json-abi", - "alloy-primitives 0.8.21", - "alloy-sol-macro 0.8.21", + "alloy-primitives 0.8.23", + "alloy-sol-macro 0.8.23", "const-hex", "serde", ] [[package]] name = "alloy-transport" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d17722a198f33bbd25337660787aea8b8f57814febb7c746bc30407bdfc39448" +checksum = "5a8d762eadce3e9b65eac09879430c6f4fce3736cac3cac123f9b1bf435ddd13" dependencies = [ "alloy-json-rpc", "base64 0.22.1", - "futures-util", "futures-utils-wasm", "serde", "serde_json", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tower", "tracing", @@ -765,13 +835,13 @@ dependencies = [ [[package]] name = "alloy-transport-http" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e1509599021330a31c4a6816b655e34bf67acb1cc03c564e09fd8754ff6c5de" +checksum = "20819c4cb978fb39ce6ac31991ba90f386d595f922f42ef888b4a18be190713e" dependencies = [ "alloy-json-rpc", "alloy-transport", - "reqwest 0.12.12", + "reqwest 0.12.14", "serde_json", "tower", "tracing", @@ -780,9 +850,9 @@ dependencies = [ [[package]] name = "alloy-transport-ipc" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4da44bc9a5155ab599666d26decafcf12204b72a80eeaba7c5e234ee8ac205" +checksum = "5e88304aa8b796204e5e2500dfe235933ed692745e3effd94c3733643db6d218" dependencies = [ "alloy-json-rpc", "alloy-pubsub", @@ -791,6 +861,7 @@ dependencies = [ "futures", "interprocess", "pin-project", + "serde", "serde_json", "tokio", "tokio-util", @@ -799,18 +870,18 @@ dependencies = [ [[package]] name = "alloy-transport-ws" -version = "0.9.2" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58011745b2f17b334db40df9077d75b181f78360a5bc5c35519e15d4bfce15e2" +checksum = "b9653ea9aa06d0e02fcbe2f04f1c47f35a85c378ccefa98e54ae85210bc8bbfa" dependencies = [ "alloy-pubsub", "alloy-transport", "futures", - "http 1.2.0", + "http 1.3.1", "rustls 0.23.23", "serde_json", "tokio", - "tokio-tungstenite 0.24.0", + "tokio-tungstenite 0.26.2", "tracing", "ws_stream_wasm", ] @@ -821,7 +892,7 @@ version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d95a94854e420f07e962f7807485856cde359ab99ab6413883e15235ad996e8b" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-rlp", "arrayvec 0.7.6", "derive_more 1.0.0", @@ -898,9 +969,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.96" +version = "1.0.97" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4" +checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f" [[package]] name = "anymap2" @@ -928,7 +999,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1214,7 +1285,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60" dependencies = [ "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1252,7 +1323,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1393,7 +1464,7 @@ checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1499,7 +1570,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "synstructure 0.13.1", ] @@ -1511,7 +1582,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1678,7 +1749,7 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1718,7 +1789,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1729,13 +1800,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.86" +version = "0.1.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "644dd749086bf3771a2fbc5f256fdb982d53f011c7d5d560304eafeecebce79d" +checksum = "d556ec1359574147ec0c4fc5eb525f3f23263a592b1a9c07e0a75b427de55c97" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1804,7 +1875,7 @@ checksum = "e12882f59de5360c748c4cbf569a042d5fb0eb515f7bea9c1f470b47f6ffbd73" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -1815,9 +1886,9 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "aws-credential-types" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60e8f6b615cb5fc60a98132268508ad104310f0cfb25a1c22eee76efdf9154da" +checksum = "4471bef4c22a06d2c7a1b6492493d3fdf24a805323109d6874f9c94d5906ac14" dependencies = [ "aws-smithy-async", "aws-smithy-runtime-api", @@ -1827,9 +1898,9 @@ dependencies = [ [[package]] name = "aws-runtime" -version = "1.5.5" +version = "1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76dd04d39cc12844c0994f2c9c5a6f5184c22e9188ec1ff723de41910a21dcad" +checksum = "0aff45ffe35196e593ea3b9dd65b320e51e2dda95aff4390bc459e461d09c6ad" dependencies = [ "aws-credential-types", "aws-sigv4", @@ -1847,14 +1918,14 @@ dependencies = [ "percent-encoding", "pin-project-lite", "tracing", - "uuid 1.14.0", + "uuid 1.15.1", ] [[package]] name = "aws-sdk-kms" -version = "1.60.0" +version = "1.63.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc36035f7393a24719069c9a2f52e20972f7ee8472bd788e863968736acc449" +checksum = "a971bfe62ca4a228627a1b74a87a7a142979b20b168d2e2884f4893212ebb715" dependencies = [ "aws-credential-types", "aws-runtime", @@ -1874,9 +1945,9 @@ dependencies = [ [[package]] name = "aws-sigv4" -version = "1.2.9" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bfe75fad52793ce6dec0dc3d4b1f388f038b5eb866c8d4d7f3a8e21b5ea5051" +checksum = "69d03c3c05ff80d54ff860fe38c726f6f494c639ae975203a101335f223386db" dependencies = [ "aws-credential-types", "aws-smithy-http", @@ -1887,7 +1958,7 @@ dependencies = [ "hex", "hmac 0.12.1", "http 0.2.12", - "http 1.2.0", + "http 1.3.1", "once_cell", "percent-encoding", "sha2 0.10.8", @@ -1897,9 +1968,9 @@ dependencies = [ [[package]] name = "aws-smithy-async" -version = "1.2.4" +version = "1.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa59d1327d8b5053c54bf2eaae63bf629ba9e904434d0835a28ed3c0ed0a614e" +checksum = "1e190749ea56f8c42bf15dd76c65e14f8f765233e6df9b0506d9d934ebef867c" dependencies = [ "futures-util", "pin-project-lite", @@ -1908,9 +1979,9 @@ dependencies = [ [[package]] name = "aws-smithy-http" -version = "0.60.12" +version = "0.62.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7809c27ad8da6a6a68c454e651d4962479e81472aa19ae99e59f9aba1f9713cc" +checksum = "c5949124d11e538ca21142d1fba61ab0a2a2c1bc3ed323cdb3e4b878bfb83166" dependencies = [ "aws-smithy-runtime-api", "aws-smithy-types", @@ -1918,6 +1989,7 @@ dependencies = [ "bytes-utils", "futures-core", "http 0.2.12", + "http 1.3.1", "http-body 0.4.6", "once_cell", "percent-encoding", @@ -1928,18 +2000,18 @@ dependencies = [ [[package]] name = "aws-smithy-json" -version = "0.61.2" +version = "0.61.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "623a51127f24c30776c8b374295f2df78d92517386f77ba30773f15a30ce1422" +checksum = "92144e45819cae7dc62af23eac5a038a58aa544432d2102609654376a900bd07" dependencies = [ "aws-smithy-types", ] [[package]] name = "aws-smithy-runtime" -version = "1.7.8" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d526a12d9ed61fadefda24abe2e682892ba288c2018bcb38b1b4c111d13f6d92" +checksum = "f6328865e36c6fd970094ead6b05efd047d3a80ec5fc3be5e743910da9f2ebf8" dependencies = [ "aws-smithy-async", "aws-smithy-http", @@ -1947,32 +2019,28 @@ dependencies = [ "aws-smithy-types", "bytes", "fastrand", - "h2 0.3.26", "http 0.2.12", + "http 1.3.1", "http-body 0.4.6", "http-body 1.0.1", - "httparse", - "hyper 0.14.32", - "hyper-rustls 0.24.2", "once_cell", "pin-project-lite", "pin-utils", - "rustls 0.21.12", "tokio", "tracing", ] [[package]] name = "aws-smithy-runtime-api" -version = "1.7.3" +version = "1.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92165296a47a812b267b4f41032ff8069ab7ff783696d217f0994a0d7ab585cd" +checksum = "3da37cf5d57011cb1753456518ec76e31691f1f474b73934a284eb2a1c76510f" dependencies = [ "aws-smithy-async", "aws-smithy-types", "bytes", "http 0.2.12", - "http 1.2.0", + "http 1.3.1", "pin-project-lite", "tokio", "tracing", @@ -1981,16 +2049,15 @@ dependencies = [ [[package]] name = "aws-smithy-types" -version = "1.2.13" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7b8a53819e42f10d0821f56da995e1470b199686a1809168db6ca485665f042" +checksum = "836155caafba616c0ff9b07944324785de2ab016141c3550bd1c07882f8cee8f" dependencies = [ "base64-simd", "bytes", "bytes-utils", - "futures-core", "http 0.2.12", - "http 1.2.0", + "http 1.3.1", "http-body 0.4.6", "http-body 1.0.1", "http-body-util", @@ -2001,15 +2068,13 @@ dependencies = [ "ryu", "serde", "time", - "tokio", - "tokio-util", ] [[package]] name = "aws-types" -version = "1.3.5" +version = "1.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfbd0a668309ec1f66c0f6bda4840dd6d4796ae26d699ebc266d7cc95c6d040f" +checksum = "3873f8deed8927ce8d04487630dc9ff73193bab64742a61d050e57a68dec4125" dependencies = [ "aws-credential-types", "aws-smithy-async", @@ -2082,9 +2147,9 @@ dependencies = [ [[package]] name = "base64ct" -version = "1.6.0" +version = "1.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" +checksum = "8faa168b8c4ffca39c2699e772943af41ec2b75fb1683dda07b28a6d285c53dc" [[package]] name = "bech32" @@ -2200,9 +2265,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.8.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" +checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" [[package]] name = "bitvec" @@ -2249,9 +2314,9 @@ dependencies = [ [[package]] name = "blake3" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1230237285e3e10cde447185e8975408ae24deaa67205ce684805c25bc0c7937" +checksum = "675f87afced0413c9bb02843499dbbd3882a237645883f71a2b59644a6d2f753" dependencies = [ "arrayref", "arrayvec 0.7.6", @@ -2306,55 +2371,171 @@ dependencies = [ [[package]] name = "blueprint-build-utils" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "gadget-std", ] [[package]] -name = "blueprint-metadata" -version = "0.2.1" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +name = "blueprint-core" +version = "0.1.0" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "cargo_metadata 0.18.1", - "fs2", - "gadget-blueprint-proc-macro-core", + "bytes", + "futures-util", + "hashbrown 0.15.2", + "pin-project-lite", + "tiny-keccak", + "tower", + "tracing", +] + +[[package]] +name = "blueprint-evm-extra" +version = "0.1.0" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" +dependencies = [ + "alloy-consensus", + "alloy-network", + "alloy-primitives 0.8.23", + "alloy-provider", + "alloy-rlp", + "alloy-rpc-client", + "alloy-rpc-types", + "alloy-signer-local", + "alloy-sol-types 0.8.23", + "alloy-transport", + "alloy-transport-http", + "async-stream", + "blueprint-core", + "bytes", + "document-features", + "futures", + "futures-util", "gadget-std", - "rustdoc-types", - "serde", + "pin-project-lite", "serde_json", - "thiserror 2.0.11", - "typed-builder", + "thiserror 2.0.12", + "tokio", + "tower", + "url", +] + +[[package]] +name = "blueprint-macros" +version = "0.1.0" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.100", +] + +[[package]] +name = "blueprint-producers-extra" +version = "0.1.0" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" +dependencies = [ + "blueprint-core", + "document-features", + "futures", +] + +[[package]] +name = "blueprint-router" +version = "0.1.0" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" +dependencies = [ + "blueprint-core", + "bytes", + "document-features", + "futures", + "hashbrown 0.15.2", + "pin-project-lite", + "tower", +] + +[[package]] +name = "blueprint-runner" +version = "0.1.0" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" +dependencies = [ + "blueprint-core", + "blueprint-router", + "blueprint-tangle-extra", + "clap", + "crossbeam-channel", + "document-features", + "dynosaur", + "futures", + "futures-core", + "futures-util", + "gadget-crypto", + "gadget-keystore", + "gadget-networking", + "gadget-std", + "k256", + "libp2p", + "serde", + "tangle-subxt", + "thiserror 2.0.12", + "tokio", + "tower", + "tracing", + "url", ] [[package]] name = "blueprint-sdk" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "blueprint-build-utils", - "blueprint-metadata", + "blueprint-core", + "blueprint-evm-extra", + "blueprint-macros", + "blueprint-producers-extra", + "blueprint-router", + "blueprint-runner", + "blueprint-tangle-extra", + "document-features", + "gadget-blueprint-serde", "gadget-clients", - "gadget-config", "gadget-context-derive", "gadget-contexts", "gadget-crypto", "gadget-crypto-tangle-pair-signer", - "gadget-event-listeners", "gadget-keystore", - "gadget-logging", - "gadget-macros", - "gadget-runners", "gadget-std", "gadget-testing-utils", - "gadget-utils", "serde", "tangle-subxt", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", ] +[[package]] +name = "blueprint-tangle-extra" +version = "0.1.0" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" +dependencies = [ + "blueprint-core", + "bytes", + "cargo_metadata 0.18.1", + "cid", + "document-features", + "futures-core", + "futures-util", + "gadget-blueprint-serde", + "pin-project-lite", + "serde", + "serde_json", + "tangle-subxt", + "thiserror 2.0.12", + "tower", +] + [[package]] name = "bollard" version = "0.18.1" @@ -2368,7 +2549,7 @@ dependencies = [ "futures-util", "hex", "home", - "http 1.2.0", + "http 1.3.1", "http-body-util", "hyper 1.6.0", "hyper-named-pipe", @@ -2386,7 +2567,7 @@ dependencies = [ "serde_json", "serde_repr", "serde_urlencoded", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tokio-util", "tower-service", @@ -2729,15 +2910,15 @@ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" [[package]] name = "byte-slice-cast" -version = "1.2.2" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" +checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d" [[package]] name = "bytemuck" -version = "1.21.0" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" +checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540" [[package]] name = "byteorder" @@ -2747,9 +2928,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9" +checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" dependencies = [ "serde", ] @@ -2776,12 +2957,11 @@ dependencies = [ [[package]] name = "bzip2-sys" -version = "0.1.12+1.0.8" +version = "0.1.13+1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72ebc2f1a417f01e1da30ef264ee86ae31d2dcd2d603ea283d3c244a883ca2a9" +checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" dependencies = [ "cc", - "libc", "pkg-config", ] @@ -2822,14 +3002,14 @@ dependencies = [ "clap", "console", "dialoguer", - "env_logger 0.11.6", + "env_logger 0.11.7", "fs-err 3.0.0", "git2", "gix-config", "heck 0.5.0", "home", "ignore", - "indexmap 2.7.1", + "indexmap 2.8.0", "indicatif", "liquid", "liquid-core", @@ -2837,17 +3017,16 @@ dependencies = [ "liquid-lib", "log", "names", - "openssl", "paste", "path-absolutize", "regex", "remove_dir_all", "rhai", "sanitize-filename", - "semver 1.0.25", + "semver 1.0.26", "serde", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.12", "time", "toml 0.8.20", "walkdir", @@ -2865,18 +3044,22 @@ dependencies = [ [[package]] name = "cargo-tangle" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "alloy-contract", "alloy-json-abi", "alloy-network", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-provider", "alloy-rpc-types-eth", "alloy-signer-local", "alloy-transport", "anyhow", "bip39", + "blueprint-core", + "blueprint-evm-extra", + "blueprint-runner", + "blueprint-tangle-extra", "cargo-generate", "cargo_metadata 0.18.1", "clap", @@ -2885,24 +3068,21 @@ dependencies = [ "dialoguer", "dotenv", "escargot", - "gadget-blueprint-proc-macro-core", "gadget-clients", - "gadget-config", "gadget-crypto", "gadget-crypto-core", "gadget-keystore", - "gadget-logging", "gadget-std", - "gadget-utils-tangle", "hex", - "reqwest 0.12.12", + "indicatif", + "reqwest 0.12.14", "serde", "serde_json", "sp-core", "tangle-subxt", "tempfile", "testcontainers", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "toml 0.8.20", "tracing", @@ -2915,7 +3095,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f905f68f8cb8a8182592d9858a5895360f0a5b08b6901fdb10498fb91829804" dependencies = [ - "semver 1.0.25", + "semver 1.0.26", "serde", "serde-untagged", "serde-value", @@ -2933,7 +3113,7 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.25", + "semver 1.0.26", "serde", "serde_json", "thiserror 1.0.69", @@ -2947,7 +3127,7 @@ checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" dependencies = [ "camino", "cargo-platform", - "semver 1.0.25", + "semver 1.0.26", "serde", "serde_json", "thiserror 1.0.69", @@ -2974,9 +3154,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.15" +version = "1.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c736e259eea577f443d5c86c304f9f4ae0295c43f3ba05c21f1d66b5f06001af" +checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c" dependencies = [ "jobserver", "libc", @@ -3036,17 +3216,15 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.39" +version = "0.4.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" +checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c" dependencies = [ "android-tzdata", "iana-time-zone", - "js-sys", "num-traits", "serde", - "wasm-bindgen", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -3076,9 +3254,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.30" +version = "4.5.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92b7b18d71fad5313a1e320fa9897994228ce274b60faa4d694fe0ea89cd9e6d" +checksum = "6088f3ae8c3608d19260cd7445411865a485688711b78b5be70d78cd96136f83" dependencies = [ "clap_builder", "clap_derive", @@ -3096,9 +3274,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.30" +version = "4.5.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a35db2071778a7344791a4fb4f95308b5673d219dee3ae348b86642574ecc90c" +checksum = "22a7ef7f676155edfb82daa97f99441f3ebf4a58d5e32f295a56259f1b6facc8" dependencies = [ "anstream", "anstyle", @@ -3109,14 +3287,14 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.28" +version = "4.5.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed" +checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -3307,9 +3485,9 @@ dependencies = [ [[package]] name = "console" -version = "0.15.10" +version = "0.15.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" +checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" dependencies = [ "encode_unicode", "libc", @@ -3553,21 +3731,27 @@ dependencies = [ ] [[package]] -name = "crc32fast" -version = "1.4.2" +name = "crc" +version = "3.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" dependencies = [ - "cfg-if", + "crc-catalog", ] [[package]] -name = "croner" -version = "2.1.0" +name = "crc-catalog" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38fd53511eaf0b00a185613875fee58b208dfce016577d0ad4bb548e1c4fb3ee" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" + +[[package]] +name = "crc32fast" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" dependencies = [ - "chrono", + "cfg-if", ] [[package]] @@ -3674,7 +3858,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" dependencies = [ "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -3768,7 +3952,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -3819,9 +4003,9 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" -version = "0.17.1" +version = "0.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbc44222c528b88dcc6e921e7a0dc94d66b5895aab9e9d9db8798fc62f7ccd40" +checksum = "105767016b8136031f14cca439edf28c8493e3556e6781847758511bfef2477a" dependencies = [ "bounded-collections", "bp-xcm-bridge-hub-router", @@ -4000,7 +4184,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4014,9 +4198,9 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.141" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bc580dceb395cae0efdde0a88f034cfd8a276897e40c693a7b87bed17971d33" +checksum = "4615b1496a78e2c624b792d982e5d2152db2e5b53d401605776ec819e50891ce" dependencies = [ "cc", "cxxbridge-cmd", @@ -4028,47 +4212,47 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.141" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49d8c1baedad72a7efda12ad8d7ad687b3e7221dfb304a12443fd69e9de8bb30" +checksum = "147bafb46dc3ad9d24717723751371147373ffa8cf5f816e0031e34d6998b339" dependencies = [ "cc", "codespan-reporting", "proc-macro2", "quote", "scratch", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "cxxbridge-cmd" -version = "1.0.141" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e43afb0e3b2ef293492a31ecd796af902112460d53e5f923f7804f348a769f9c" +checksum = "07d4631e3095af42e8de3c73ee2b7d49fe541578ccd9f6b19920ac3c5fef528c" dependencies = [ "clap", "codespan-reporting", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "cxxbridge-flags" -version = "1.0.141" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0257ad2096a2474fe877e9e055ab69603851c3d6b394efcc7e0443899c2492ce" +checksum = "f05c4a04df781bb50f52a16cfd7c580d0d904af8e7c411678be52d84ed3416ab" [[package]] name = "cxxbridge-macro" -version = "1.0.141" +version = "1.0.144" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b46cbd7358a46b760609f1cb5093683328e58ca50e594a308716f5403fdc03e5" +checksum = "93be4a484f2b719c2cb56ab5f06e05377987477c7b3bf7a1cf28a266ec8cfaa1" dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4092,7 +4276,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4103,7 +4287,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4143,7 +4327,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18e4fdb82bd54a12e42fb58a800dcae6b9e13982238ce2296dc3570b92148e1f" dependencies = [ "data-encoding", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4200,7 +4384,7 @@ checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4211,7 +4395,7 @@ checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4224,7 +4408,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version 0.4.1", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4233,27 +4417,40 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" dependencies = [ - "derive_more-impl", + "derive_more-impl 1.0.0", ] [[package]] -name = "derive_more-impl" -version = "1.0.0" +name = "derive_more" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" +checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" dependencies = [ - "proc-macro2", + "derive_more-impl 2.0.1", +] + +[[package]] +name = "derive_more-impl" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" +dependencies = [ + "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "unicode-xid", ] [[package]] -name = "dhrt" -version = "0.1.0" +name = "derive_more-impl" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" dependencies = [ - "blueprint-sdk", - "color-eyre", + "proc-macro2", + "quote", + "syn 2.0.100", + "unicode-xid", ] [[package]] @@ -4371,7 +4568,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4395,7 +4592,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.98", + "syn 2.0.100", "termcolor", "toml 0.8.20", "walkdir", @@ -4418,6 +4615,15 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aac81fa3e28d21450aa4d2ac065992ba96a1d7303efbce51a95f4fd175b67562" +[[package]] +name = "document-features" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d" +dependencies = [ + "litrs", +] + [[package]] name = "dotenv" version = "0.15.0" @@ -4432,9 +4638,9 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "dtoa" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" +checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" [[package]] name = "dunce" @@ -4460,14 +4666,33 @@ checksum = "7e8671d54058979a37a26f3511fbf8d198ba1aa35ffb202c42587d918d77213a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "dyn-clone" -version = "1.0.18" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "feeef44e73baff3a26d371801df019877a9866a8c493d315ab00177843314f35" +checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" + +[[package]] +name = "dynosaur" +version = "0.1.3" +source = "git+https://github.com/spastorino/dynosaur.git?rev=7a761a3#7a761a363b1c8db51ec2dad4036717aa67222e44" +dependencies = [ + "dynosaur_derive", + "trait-variant", +] + +[[package]] +name = "dynosaur_derive" +version = "0.1.3" +source = "git+https://github.com/spastorino/dynosaur.git?rev=7a761a3#7a761a363b1c8db51ec2dad4036717aa67222e44" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.100", +] [[package]] name = "ecdsa" @@ -4533,14 +4758,13 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "eigen-client-avsregistry" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa756f287ce7ab5b7462d66f6b73923793c03f800cab88a570a5eefa3468cda0" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", "ark-ff 0.5.0", @@ -4558,12 +4782,12 @@ dependencies = [ [[package]] name = "eigen-client-elcontracts" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5858b5c50c1cb3af7ede8694a150b7e7b9b3a49e71a01abf4412d3578c4d1ead" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", "eigen-common", + "eigen-crypto-bls", "eigen-logging", "eigen-types", "eigen-utils", @@ -4573,9 +4797,8 @@ dependencies = [ [[package]] name = "eigen-common" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8dab3d3fee2c9e450493f77d3b0f925ad11c31e14280ef9e6cd6bdc4295aee24" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", "url", @@ -4583,9 +4806,8 @@ dependencies = [ [[package]] name = "eigen-crypto-bls" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37c23bc0fa318a2f721dce577427095112df111d750035984e9abd0f1b883463" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", "ark-bn254", @@ -4601,9 +4823,8 @@ dependencies = [ [[package]] name = "eigen-crypto-bn254" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33a577f74e87a582413fcc918ed66dda3863352d3ee366ad9e241a13045cc4b5" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "ark-bn254", "ark-ec 0.5.0", @@ -4613,9 +4834,8 @@ dependencies = [ [[package]] name = "eigen-logging" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c403f510d4703d6149fa120a0dcbbcd30e104d7b521c7f3a6a2a8c1248000b5b" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "ctor", "once_cell", @@ -4625,9 +4845,8 @@ dependencies = [ [[package]] name = "eigen-services-avsregistry" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67255f6f6d262d7f207420ba6539eed5dda38f0b4af94b7162e9805f677b9fc9" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", "ark-bn254", @@ -4642,9 +4861,8 @@ dependencies = [ [[package]] name = "eigen-services-blsaggregation" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b79cde8ec3d9de5385eed7403c32e8267dc5442df7e87f8a402cde09d9c6b419" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", "ark-bn254", @@ -4665,9 +4883,8 @@ dependencies = [ [[package]] name = "eigen-services-operatorsinfo" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55450bac097e072be96a421ccef8f9d01ebfc4bca55d7084037cb2b1d56e8ca4" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", "async-trait", @@ -4685,70 +4902,57 @@ dependencies = [ "tokio-util", ] -[[package]] -name = "eigen-signer" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8b06a7ae64e4f60b85a18e0188394656b16da2d00b4b1eb6f6fec09a18f23db" -dependencies = [ - "alloy", - "async-trait", - "aws-sdk-kms", - "eth-keystore", - "serde", - "thiserror 1.0.69", - "url", -] - [[package]] name = "eigen-types" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d755c27311824ac9fa62349dc2ba92c84cd38bf3186d8298f51aacdba448c73" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", + "ark-ff 0.5.0", "eigen-crypto-bls", + "eigen-utils", "ethers", + "mime-sniffer", "num-bigint", + "regex", + "serde", + "serde_json", "thiserror 1.0.69", "tokio", + "url", ] [[package]] name = "eigen-utils" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "494efe972a182999f2dc28ea9dd89a1a055a71850cbaee1f2875a32fc6cbd54e" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "alloy", - "reqwest 0.12.12", + "regex", + "reqwest 0.12.14", ] [[package]] name = "eigensdk" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fe713bdd2f38bd1d253e568ec51d93a992a4cc24a75a5e0361fe8e8a3566793" +version = "0.4.0" +source = "git+https://github.com/Serial-ATA/eigensdk-rs.git?branch=serial%2Falloy-0.11#267df08b4d150f4279818d0041be4e55f0826aea" dependencies = [ "eigen-client-avsregistry", "eigen-client-elcontracts", "eigen-common", - "eigen-crypto-bls", - "eigen-crypto-bn254", "eigen-logging", "eigen-services-avsregistry", "eigen-services-blsaggregation", "eigen-services-operatorsinfo", - "eigen-signer", "eigen-types", "eigen-utils", ] [[package]] name = "either" -version = "1.13.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "elliptic-curve" @@ -4822,7 +5026,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4842,7 +5046,7 @@ checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4862,7 +5066,7 @@ checksum = "fc4caf64a58d7a6d65ab00639b046ff54399a39f5f2554728895ace4b297cd79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4873,7 +5077,7 @@ checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -4901,14 +5105,14 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.6" +version = "0.11.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" +checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697" dependencies = [ "anstream", "anstyle", "env_filter", - "humantime", + "jiff 0.2.4", "log", ] @@ -4926,9 +5130,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "erased-serde" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d" +checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7" dependencies = [ "serde", "typeid", @@ -5113,7 +5317,7 @@ dependencies = [ "reqwest 0.11.27", "serde", "serde_json", - "syn 2.0.98", + "syn 2.0.100", "toml 0.8.20", "walkdir", ] @@ -5131,7 +5335,7 @@ dependencies = [ "proc-macro2", "quote", "serde_json", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5157,7 +5361,7 @@ dependencies = [ "serde", "serde_json", "strum 0.26.3", - "syn 2.0.98", + "syn 2.0.100", "tempfile", "thiserror 1.0.69", "tiny-keccak", @@ -5173,7 +5377,7 @@ dependencies = [ "chrono", "ethers-core", "reqwest 0.11.27", - "semver 1.0.25", + "semver 1.0.26", "serde", "serde_json", "thiserror 1.0.69", @@ -5282,7 +5486,7 @@ dependencies = [ "path-slash", "rayon", "regex", - "semver 1.0.25", + "semver 1.0.26", "serde", "serde_json", "solang-parser", @@ -5328,7 +5532,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5389,9 +5593,9 @@ dependencies = [ [[package]] name = "ff" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ "rand_core 0.6.4", "subtle", @@ -5471,9 +5675,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flate2" -version = "1.0.35" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" +checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc" dependencies = [ "crc32fast", "miniz_oxide 0.8.5", @@ -5491,6 +5695,27 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" +[[package]] +name = "foo-blueprint-bin" +version = "0.1.0" +dependencies = [ + "blueprint-sdk", + "foo-blueprint-lib", + "tokio", + "tower", + "tracing", + "tracing-subscriber 0.3.19", +] + +[[package]] +name = "foo-blueprint-lib" +version = "0.1.0" +dependencies = [ + "blueprint-sdk", + "color-eyre", + "tokio", +] + [[package]] name = "foreign-types" version = "0.3.2" @@ -5578,7 +5803,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5717,7 +5942,7 @@ dependencies = [ "proc-macro2", "quote", "sp-crypto-hashing", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5730,7 +5955,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5741,7 +5966,7 @@ checksum = "ed971c6435503a099bdac99fe4c5bea08981709e5b5a0a8535a1856f48561191" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -5941,7 +6166,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -6010,36 +6235,10 @@ dependencies = [ "byteorder", ] -[[package]] -name = "gadget-blueprint-proc-macro" -version = "0.6.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "gadget-blueprint-proc-macro-core", - "gadget-std", - "indexmap 2.7.1", - "itertools 0.14.0", - "proc-macro2", - "quote", - "serde_json", - "syn 2.0.98", -] - -[[package]] -name = "gadget-blueprint-proc-macro-core" -version = "0.4.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "cid", - "ethereum-types", - "gadget-std", - "serde", -] - [[package]] name = "gadget-blueprint-serde" version = "0.3.1" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "paste", "serde", @@ -6050,32 +6249,31 @@ dependencies = [ [[package]] name = "gadget-client-core" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "async-trait", "auto_impl", "gadget-std", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "gadget-client-eigenlayer" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "alloy-contract", "alloy-network", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-provider", "alloy-pubsub", "alloy-transport", + "blueprint-evm-extra", + "blueprint-runner", "eigensdk", "gadget-client-core", - "gadget-config", "gadget-std", - "gadget-utils-evm", "num-bigint", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tokio-util", "url", @@ -6084,12 +6282,12 @@ dependencies = [ [[package]] name = "gadget-client-evm" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "alloy-consensus", "alloy-json-rpc", "alloy-network", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-provider", "alloy-pubsub", "alloy-rlp", @@ -6098,15 +6296,14 @@ dependencies = [ "alloy-rpc-types-eth", "alloy-transport", "alloy-transport-http", - "async-trait", + "blueprint-core", "gadget-client-core", - "gadget-logging", "gadget-rpc-calls", "gadget-std", "hex", "serde", "serde_json", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "url", ] @@ -6114,73 +6311,53 @@ dependencies = [ [[package]] name = "gadget-client-tangle" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "async-trait", "auto_impl", + "blueprint-core", + "blueprint-runner", "gadget-client-core", - "gadget-config", "gadget-crypto-sp-core", "gadget-keystore", - "gadget-logging", "gadget-std", "serde", "serde_json", "sp-core", "tangle-subxt", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", ] [[package]] name = "gadget-clients" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "gadget-client-core", "gadget-client-eigenlayer", "gadget-client-evm", "gadget-client-tangle", "gadget-std", - "thiserror 2.0.11", -] - -[[package]] -name = "gadget-config" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "alloy-primitives 0.8.21", - "clap", - "gadget-keystore", - "gadget-networking", - "gadget-std", - "libp2p", - "serde", - "serde_json", - "thiserror 2.0.11", - "tracing", - "url", + "thiserror 2.0.12", ] [[package]] name = "gadget-context-derive" version = "0.3.1" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "gadget-contexts" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "async-trait", + "blueprint-runner", "gadget-clients", - "gadget-config", "gadget-keystore", "gadget-networking", "gadget-std", @@ -6190,29 +6367,28 @@ dependencies = [ [[package]] name = "gadget-core-testing-utils" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "async-trait", + "blueprint-core", + "blueprint-router", + "blueprint-runner", "cargo_toml", "futures", "gadget-clients", - "gadget-config", - "gadget-event-listeners", "gadget-keystore", - "gadget-logging", - "gadget-runners", "serde_json", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tracing", + "tracing-subscriber 0.3.19", "url", ] [[package]] name = "gadget-crypto" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "gadget-crypto-bls", "gadget-crypto-bn254", @@ -6223,13 +6399,13 @@ dependencies = [ "gadget-crypto-sp-core", "gadget-crypto-sr25519", "gadget-crypto-tangle-pair-signer", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "gadget-crypto-bls" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "ark-serialize 0.5.0", "gadget-crypto-core", @@ -6238,14 +6414,14 @@ dependencies = [ "paste", "serde", "serde_bytes", - "thiserror 2.0.11", + "thiserror 2.0.12", "tnt-bls", ] [[package]] name = "gadget-crypto-bn254" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "ark-bn254", "ark-ec 0.5.0", @@ -6259,24 +6435,24 @@ dependencies = [ "serde", "serde_bytes", "sha2 0.10.8", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "gadget-crypto-core" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "clap", "gadget-std", "serde", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "gadget-crypto-ed25519" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "ed25519-zebra", "gadget-crypto-core", @@ -6284,13 +6460,13 @@ dependencies = [ "hex", "serde", "serde_bytes", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "gadget-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "blake3", "gadget-std", @@ -6301,9 +6477,9 @@ dependencies = [ [[package]] name = "gadget-crypto-k256" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-signer-local", "gadget-crypto-core", "gadget-std", @@ -6311,13 +6487,13 @@ dependencies = [ "k256", "serde", "serde_bytes", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "gadget-crypto-sp-core" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "gadget-crypto-core", "gadget-std", @@ -6326,13 +6502,13 @@ dependencies = [ "serde", "serde_bytes", "sp-core", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "gadget-crypto-sr25519" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "gadget-crypto-core", "gadget-std", @@ -6340,15 +6516,15 @@ dependencies = [ "schnorrkel", "serde", "serde_bytes", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "gadget-crypto-tangle-pair-signer" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-signer-local", "gadget-crypto-core", "gadget-crypto-sp-core", @@ -6358,108 +6534,24 @@ dependencies = [ "sp-core", "sp-runtime", "tangle-subxt", - "thiserror 2.0.11", -] - -[[package]] -name = "gadget-event-listeners" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "gadget-event-listeners-core", - "gadget-event-listeners-cronjob", - "gadget-event-listeners-evm", - "gadget-event-listeners-tangle", - "gadget-std", -] - -[[package]] -name = "gadget-event-listeners-core" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "async-trait", - "auto_impl", - "gadget-logging", - "gadget-std", - "thiserror 2.0.11", - "tokio", -] - -[[package]] -name = "gadget-event-listeners-cronjob" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "async-trait", - "gadget-event-listeners-core", - "gadget-logging", - "gadget-std", - "thiserror 2.0.11", - "tokio", - "tokio-cron-scheduler", -] - -[[package]] -name = "gadget-event-listeners-evm" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "alloy-contract", - "alloy-network", - "alloy-provider", - "alloy-rpc-types", - "alloy-sol-types 0.8.21", - "alloy-transport", - "async-trait", - "gadget-event-listeners-core", - "gadget-logging", - "gadget-std", - "gadget-stores", - "thiserror 2.0.11", - "tokio", - "uuid 1.14.0", -] - -[[package]] -name = "gadget-event-listeners-tangle" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "async-trait", - "gadget-blueprint-serde", - "gadget-clients", - "gadget-contexts", - "gadget-crypto", - "gadget-event-listeners-core", - "gadget-logging", - "gadget-std", - "gadget-utils-tangle", - "parking_lot", - "serde", - "sp-core", - "tangle-subxt", - "thiserror 2.0.11", - "tokio", + "thiserror 2.0.12", ] [[package]] name = "gadget-keystore" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "alloy-network", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-signer", "alloy-signer-local", "ark-bn254", "ark-ec 0.5.0", "ark-ff 0.5.0", "ark-serialize 0.5.0", - "async-trait", "blake3", "ed25519-zebra", - "eigensdk", "gadget-crypto", "gadget-std", "hex", @@ -6476,52 +6568,19 @@ dependencies = [ "sp-core", "sp-io", "tangle-subxt", - "thiserror 2.0.11", + "thiserror 2.0.12", "tnt-bls", "tokio", "zeroize", ] -[[package]] -name = "gadget-logging" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "tracing", - "tracing-subscriber 0.3.19", -] - -[[package]] -name = "gadget-macros" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "async-trait", - "clap", - "futures", - "gadget-blueprint-proc-macro", - "gadget-blueprint-proc-macro-core", - "gadget-blueprint-serde", - "gadget-clients", - "gadget-config", - "gadget-context-derive", - "gadget-contexts", - "gadget-crypto", - "gadget-event-listeners", - "gadget-keystore", - "gadget-logging", - "gadget-std", - "tangle-subxt", - "tokio", -] - [[package]] name = "gadget-networking" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ + "alloy-primitives 0.8.23", "anyhow", - "async-trait", "auto_impl", "bincode", "blake3", @@ -6530,17 +6589,17 @@ dependencies = [ "futures", "gadget-crypto", "gadget-crypto-core", - "gadget-logging", "gadget-std", "hex", "itertools 0.14.0", "k256", "libp2p", + "libsecp256k1", "lru-mem", "parking_lot", "serde", "serde_json", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tokio-stream", "tracing", @@ -6549,148 +6608,54 @@ dependencies = [ [[package]] name = "gadget-rpc-calls" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "gadget-logging", "metrics", ] -[[package]] -name = "gadget-runner-core" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "async-trait", - "futures", - "gadget-config", - "gadget-event-listeners", - "gadget-logging", - "gadget-utils", - "thiserror 2.0.11", - "tokio", -] - -[[package]] -name = "gadget-runner-eigenlayer" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "alloy-contract", - "alloy-network", - "alloy-primitives 0.8.21", - "alloy-provider", - "alloy-rpc-types", - "alloy-signer", - "alloy-signer-local", - "async-trait", - "eigensdk", - "gadget-config", - "gadget-contexts", - "gadget-keystore", - "gadget-logging", - "gadget-runner-core", - "gadget-std", - "gadget-utils", - "thiserror 2.0.11", -] - -[[package]] -name = "gadget-runner-tangle" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "async-trait", - "futures", - "gadget-clients", - "gadget-config", - "gadget-crypto", - "gadget-keystore", - "gadget-logging", - "gadget-runner-core", - "gadget-std", - "gadget-utils", - "k256", - "sp-core", - "tangle-subxt", - "thiserror 2.0.11", -] - -[[package]] -name = "gadget-runners" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "gadget-runner-core", - "gadget-runner-eigenlayer", - "gadget-runner-tangle", -] - [[package]] name = "gadget-std" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ - "async-trait", "colored", "num-traits", "rand 0.8.5", - "thiserror 2.0.11", - "tokio", -] - -[[package]] -name = "gadget-store-local-database" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "gadget-std", - "serde", - "serde_json", -] - -[[package]] -name = "gadget-stores" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "gadget-store-local-database", + "thiserror 2.0.12", ] [[package]] name = "gadget-tangle-testing-utils" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "alloy-json-rpc", - "alloy-primitives 0.8.21", + "alloy-primitives 0.8.23", "alloy-provider", "alloy-rpc-types", "alloy-signer-local", - "alloy-sol-types 0.8.21", + "alloy-sol-types 0.8.23", "alloy-transport", - "async-trait", + "blueprint-core", + "blueprint-runner", + "blueprint-tangle-extra", "cargo-tangle", - "dirs 5.0.1", + "dirs 6.0.0", "futures", "gadget-blueprint-serde", "gadget-client-tangle", "gadget-clients", - "gadget-config", "gadget-contexts", "gadget-core-testing-utils", "gadget-crypto-tangle-pair-signer", - "gadget-event-listeners", "gadget-keystore", - "gadget-logging", - "gadget-macros", "gadget-networking", - "gadget-runners", "gadget-std", - "reqwest 0.12.12", + "reqwest 0.12.14", "sp-core", "tangle-subxt", "tempfile", - "thiserror 2.0.11", + "thiserror 2.0.12", "tnt-core-bytecode", "tokio", "tracing", @@ -6700,64 +6665,12 @@ dependencies = [ [[package]] name = "gadget-testing-utils" version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" +source = "git+https://github.com/tangle-network/blueprint.git#b5971805cc6d9d07f8f5b136e8c37ab0400c91d6" dependencies = [ "gadget-core-testing-utils", "gadget-tangle-testing-utils", ] -[[package]] -name = "gadget-utils" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "gadget-utils-eigenlayer", - "gadget-utils-evm", - "gadget-utils-tangle", -] - -[[package]] -name = "gadget-utils-eigenlayer" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "alloy-contract", - "alloy-network", - "alloy-primitives 0.8.21", - "alloy-provider", - "alloy-transport", - "eigensdk", - "gadget-utils-evm", - "thiserror 2.0.11", -] - -[[package]] -name = "gadget-utils-evm" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "alloy-network", - "alloy-primitives 0.8.21", - "alloy-provider", - "alloy-signer", - "alloy-signer-local", - "alloy-transport", - "gadget-std", - "url", -] - -[[package]] -name = "gadget-utils-tangle" -version = "0.1.0" -source = "git+https://github.com/tangle-network/gadget#325d2d877755aa9bef428a010c67b885bd4e0a05" -dependencies = [ - "async-trait", - "gadget-logging", - "gadget-std", - "tangle-subxt", - "tracing", -] - [[package]] name = "generator" version = "0.8.4" @@ -6854,7 +6767,7 @@ version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b903b73e45dc0c6c596f2d37eccece7c1c8bb6e4407b001096387c63d0d93724" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "libc", "libgit2-sys", "log", @@ -6904,11 +6817,11 @@ version = "0.14.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11365144ef93082f3403471dbaa94cfe4b5e72743bdb9560719a251d439f4cee" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "bstr", "gix-path", "libc", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -6919,8 +6832,8 @@ checksum = "c57c477b645ee248b173bb1176b52dd528872f12c50375801a58aaf5ae91113f" dependencies = [ "bstr", "itoa", - "jiff", - "thiserror 2.0.11", + "jiff 0.1.29", + "thiserror 2.0.12", ] [[package]] @@ -6955,7 +6868,7 @@ version = "0.16.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74908b4bbc0a0a40852737e5d7889f676f081e340d5451a16e5b4c50d592f111" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "bstr", "gix-features", "gix-path", @@ -7011,7 +6924,7 @@ dependencies = [ "gix-trace", "home", "once_cell", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -7041,7 +6954,7 @@ version = "0.10.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d84dae13271f4313f8d60a166bf27e54c968c7c33e2ffd31c48cafe5da649875" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "gix-path", "libc", "windows-sys 0.52.0", @@ -7083,7 +6996,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9eaa01c3337d885617c0a42e92823922a2aea71f4caeace6fe87002bdcadbd90" dependencies = [ "bstr", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -7094,9 +7007,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "globset" -version = "0.4.15" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19" +checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5" dependencies = [ "aho-corasick", "bstr", @@ -7140,7 +7053,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.7.1", + "indexmap 2.8.0", "slab", "tokio", "tokio-util", @@ -7158,8 +7071,8 @@ dependencies = [ "fnv", "futures-core", "futures-sink", - "http 1.2.0", - "indexmap 2.7.1", + "http 1.3.1", + "indexmap 2.8.0", "slab", "tokio", "tokio-util", @@ -7264,6 +7177,12 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" +[[package]] +name = "hermit-abi" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e" + [[package]] name = "hex" version = "0.4.3" @@ -7319,7 +7238,7 @@ dependencies = [ "once_cell", "rand 0.9.0", "socket2", - "thiserror 2.0.11", + "thiserror 2.0.12", "tinyvec", "tokio", "tracing", @@ -7342,7 +7261,7 @@ dependencies = [ "rand 0.9.0", "resolv-conf", "smallvec", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tracing", ] @@ -7397,13 +7316,13 @@ dependencies = [ [[package]] name = "hostname" -version = "0.3.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba" dependencies = [ + "cfg-if", "libc", - "match_cfg", - "winapi", + "windows 0.52.0", ] [[package]] @@ -7419,9 +7338,9 @@ dependencies = [ [[package]] name = "http" -version = "1.2.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea" +checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" dependencies = [ "bytes", "fnv", @@ -7446,27 +7365,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", - "http 1.2.0", + "http 1.3.1", ] [[package]] name = "http-body-util" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ "bytes", - "futures-util", - "http 1.2.0", + "futures-core", + "http 1.3.1", "http-body 1.0.1", "pin-project-lite", ] [[package]] name = "httparse" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2d708df4e7140240a16cd6ab0ab65c972d7433ab77819ea693fde9c43811e2a" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "httpdate" @@ -7476,9 +7395,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "humantime" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" +checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f" [[package]] name = "hyper" @@ -7514,7 +7433,7 @@ dependencies = [ "futures-channel", "futures-util", "h2 0.4.8", - "http 1.2.0", + "http 1.3.1", "http-body 1.0.1", "httparse", "httpdate", @@ -7549,9 +7468,7 @@ dependencies = [ "futures-util", "http 0.2.12", "hyper 0.14.32", - "log", "rustls 0.21.12", - "rustls-native-certs 0.6.3", "tokio", "tokio-rustls 0.24.1", ] @@ -7563,13 +7480,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" dependencies = [ "futures-util", - "http 1.2.0", + "http 1.3.1", "hyper 1.6.0", "hyper-util", "rustls 0.23.23", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.2", "tower-service", ] @@ -7598,7 +7515,7 @@ dependencies = [ "bytes", "futures-channel", "futures-util", - "http 1.2.0", + "http 1.3.1", "http-body 1.0.1", "hyper 1.6.0", "pin-project-lite", @@ -7761,7 +7678,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -7834,7 +7751,7 @@ dependencies = [ "attohttpc", "bytes", "futures", - "http 1.2.0", + "http 1.3.1", "http-body-util", "hyper 1.6.0", "hyper-util", @@ -7914,7 +7831,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -7955,9 +7872,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.7.1" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" +checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058" dependencies = [ "equivalent", "hashbrown 0.15.2", @@ -8012,9 +7929,9 @@ dependencies = [ [[package]] name = "interprocess" -version = "2.2.2" +version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "894148491d817cb36b6f778017b8ac46b17408d522dd90f539d677ea938362eb" +checksum = "d941b405bd2322993887859a8ee6ac9134945a24ec5ec763a8a962fc64dfec2d" dependencies = [ "doctest-file", "futures-core", @@ -8056,11 +7973,11 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" [[package]] name = "is-terminal" -version = "0.4.15" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e19b23d53f35ce9f56aebc7d1bb4e6ac1e9c0db7ac85c8d1760c04379edced37" +checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" dependencies = [ - "hermit-abi 0.4.0", + "hermit-abi 0.5.0", "libc", "windows-sys 0.59.0", ] @@ -8109,9 +8026,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.14" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" [[package]] name = "jiff" @@ -8127,11 +8044,35 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "jiff" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d699bc6dfc879fb1bf9bdff0d4c56f0884fc6f0d0eb0fba397a6d00cd9a6b85e" +dependencies = [ + "jiff-static", + "log", + "portable-atomic", + "portable-atomic-util", + "serde", +] + +[[package]] +name = "jiff-static" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d16e75759ee0aa64c57a56acbf43916987b20c77373cb7e808979e02b93c9f9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.100", +] + [[package]] name = "jiff-tzdb" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf2cec2f5d266af45a071ece48b1fb89f3b00b2421ac3a5fe10285a6caaa60d3" +checksum = "962e1dfe9b2d75a84536cf5bf5eaaa4319aa7906c7160134a22883ac316d5f31" [[package]] name = "jiff-tzdb-platform" @@ -8201,7 +8142,7 @@ checksum = "def0fd41e2f53118bd1620478d12305b2c75feef57ea1f93ef70568c98081b7e" dependencies = [ "base64 0.22.1", "futures-util", - "http 1.2.0", + "http 1.3.1", "jsonrpsee-core", "pin-project", "rustls 0.23.23", @@ -8210,7 +8151,7 @@ dependencies = [ "soketto", "thiserror 1.0.69", "tokio", - "tokio-rustls 0.26.1", + "tokio-rustls 0.26.2", "tokio-util", "tracing", "url", @@ -8242,7 +8183,7 @@ version = "0.24.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddb81adb1a5ae9182df379e374a79e24e992334e7346af4d065ae5b2acb8d4c6" dependencies = [ - "http 1.2.0", + "http 1.3.1", "serde", "serde_json", "thiserror 1.0.69", @@ -8254,7 +8195,7 @@ version = "0.24.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6f4f3642a292f5b76d8a16af5c88c16a0860f2ccc778104e5c848b28183d9538" dependencies = [ - "http 1.2.0", + "http 1.3.1", "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-types", @@ -8367,9 +8308,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.169" +version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] name = "libgit2-sys" @@ -8426,7 +8367,7 @@ dependencies = [ "multiaddr", "pin-project", "rw-stream-sink", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -8460,7 +8401,7 @@ dependencies = [ "quick-protobuf-codec", "rand 0.8.5", "rand_core 0.6.4", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "web-time", ] @@ -8496,7 +8437,7 @@ dependencies = [ "quick-protobuf", "rand 0.8.5", "rw-stream-sink", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "unsigned-varint 0.8.0", "web-time", @@ -8519,7 +8460,7 @@ dependencies = [ "lru 0.12.5", "quick-protobuf", "quick-protobuf-codec", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "web-time", ] @@ -8589,7 +8530,7 @@ dependencies = [ "quick-protobuf", "quick-protobuf-codec", "smallvec", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", ] @@ -8634,7 +8575,7 @@ dependencies = [ "serde", "sha2 0.10.8", "smallvec", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "uint 0.10.0", "web-time", @@ -8698,7 +8639,7 @@ dependencies = [ "rand 0.8.5", "snow", "static_assertions", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "x25519-dalek", "zeroize", @@ -8734,10 +8675,10 @@ dependencies = [ "libp2p-tls", "quinn", "rand 0.8.5", - "ring 0.17.10", + "ring 0.17.14", "rustls 0.23.23", "socket2", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tracing", ] @@ -8761,7 +8702,7 @@ dependencies = [ "quick-protobuf-codec", "rand 0.8.5", "static_assertions", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "web-time", ] @@ -8817,7 +8758,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -8838,19 +8779,19 @@ dependencies = [ [[package]] name = "libp2p-tls" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcaebc1069dea12c5b86a597eaaddae0317c2c2cb9ec99dc94f82fd340f5c78b" +checksum = "42bbf5084fb44133267ad4caaa72a253d68d709edd2ed1cf9b42431a8ead8fd5" dependencies = [ "futures", "futures-rustls", "libp2p-core", "libp2p-identity", "rcgen", - "ring 0.17.10", + "ring 0.17.14", "rustls 0.23.23", "rustls-webpki 0.101.7", - "thiserror 2.0.11", + "thiserror 2.0.12", "x509-parser", "yasna", ] @@ -8879,7 +8820,7 @@ dependencies = [ "either", "futures", "libp2p-core", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", "yamux 0.12.1", "yamux 0.13.4", @@ -8891,9 +8832,9 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "libc", - "redox_syscall 0.5.9", + "redox_syscall 0.5.10", ] [[package]] @@ -8972,9 +8913,9 @@ dependencies = [ [[package]] name = "link-cplusplus" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9" +checksum = "4a6f6da007f968f9def0d65a05b187e2960183de70c160204ecfccf0ee330212" dependencies = [ "cc", ] @@ -9000,6 +8941,12 @@ version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" +[[package]] +name = "linux-raw-sys" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9" + [[package]] name = "liquid" version = "0.26.11" @@ -9037,7 +8984,7 @@ checksum = "de66c928222984aea59fcaed8ba627f388aaac3c1f57dcb05cc25495ef8faefe" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -9056,9 +9003,15 @@ dependencies = [ [[package]] name = "litemap" -version = "0.7.4" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856" + +[[package]] +name = "litrs" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" +checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5" [[package]] name = "lock_api" @@ -9107,6 +9060,15 @@ dependencies = [ "hashbrown 0.15.2", ] +[[package]] +name = "lru" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465" +dependencies = [ + "hashbrown 0.15.2", +] + [[package]] name = "lru-mem" version = "0.3.0" @@ -9125,6 +9087,17 @@ dependencies = [ "libc", ] +[[package]] +name = "macro-string" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b27834086c65ec3f9387b096d66e99f221cf081c2b738042aa252bcd41204e3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.100", +] + [[package]] name = "macro_magic" version = "0.5.1" @@ -9134,7 +9107,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -9148,7 +9121,7 @@ dependencies = [ "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -9159,7 +9132,7 @@ checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -9170,15 +9143,9 @@ checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.98", + "syn 2.0.100", ] -[[package]] -name = "match_cfg" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" - [[package]] name = "matchers" version = "0.1.0" @@ -9278,6 +9245,16 @@ version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" +[[package]] +name = "mime-sniffer" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b8b2a64cd735f1d5f17ff6701ced3cc3c54851f9448caf454cd9c923d812408" +dependencies = [ + "mime", + "url", +] + [[package]] name = "minimal-lexical" version = "0.2.1" @@ -9329,7 +9306,7 @@ dependencies = [ "smallvec", "tagptr", "thiserror 1.0.69", - "uuid 1.14.0", + "uuid 1.15.1", ] [[package]] @@ -9482,7 +9459,7 @@ dependencies = [ "log", "netlink-packet-core", "netlink-sys", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -9521,7 +9498,7 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "cfg-if", "cfg_aliases", "libc", @@ -9602,7 +9579,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -9673,7 +9650,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -9736,9 +9713,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.20.3" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e" +checksum = "cde51589ab56b20a6f686b2c68f7a0bd6add753d697abf720d63f8db3ab7b1ad" dependencies = [ "portable-atomic", ] @@ -9780,7 +9757,7 @@ version = "0.10.71" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "cfg-if", "foreign-types", "libc", @@ -9797,7 +9774,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -9806,15 +9783,6 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" -[[package]] -name = "openssl-src" -version = "300.4.2+3.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "168ce4e058f975fe43e89d9ccf78ca668601887ae736090aacc23ae353c298e2" -dependencies = [ - "cc", -] - [[package]] name = "openssl-sys" version = "0.9.106" @@ -9823,7 +9791,6 @@ checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd" dependencies = [ "cc", "libc", - "openssl-src", "pkg-config", "vcpkg", ] @@ -10441,7 +10408,7 @@ checksum = "3170e2f4a3d95f2ace274b703a72630294f0a27c687a4adbad9590e2b3e5fe82" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -10494,9 +10461,9 @@ dependencies = [ [[package]] name = "pallet-delegated-staking" -version = "5.0.0" +version = "5.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "117f003a97f980514c6db25a50c22aaec2a9ccb5664b3cb32f52fb990e0b0c12" +checksum = "8502ef7c76f4c0613b4f6bd70413caba7068eeed6fc5fd2ac84fd61afc07d559" dependencies = [ "frame-support", "frame-system", @@ -10930,9 +10897,9 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" -version = "35.0.2" +version = "35.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d04f050ab02af6cbe058e101abb8706be7f8ea7958e5bf1d4cd8caa6b66c71" +checksum = "04f3b3eb893cd3da58c86db519d8d5f2f1c014ff08942b087cb475e789cd45cf" dependencies = [ "frame-support", "frame-system", @@ -11246,7 +11213,7 @@ checksum = "b8aee42afa416be6324cf6650c137da9742f27dc7be3c7ed39ad9748baf3b9ae" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -11435,9 +11402,9 @@ dependencies = [ [[package]] name = "pallet-staking" -version = "38.0.0" +version = "38.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c870d123f4f053b56af808a4beae1ffc4309a696e829796c26837936c926db3b" +checksum = "8efdbfe23385add01c734e6ddd7967e11a04fad0da7e4e42e6ae2501d1e12016" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -11715,9 +11682,9 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "17.0.1" +version = "17.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "989676964dbda5f5275650fbdcd3894fe7fac626d113abf89d572b4952adcc36" +checksum = "ff8893d5736d085729ed6d698a727a1511dd2b787b48ad0dc2d86136f142cc3e" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -11907,7 +11874,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -11969,7 +11936,7 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.5.9", + "redox_syscall 0.5.10", "smallvec", "windows-targets 0.52.6", ] @@ -11996,7 +11963,7 @@ dependencies = [ "regex", "regex-syntax 0.8.5", "structmeta", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -12115,7 +12082,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" dependencies = [ "memchr", - "thiserror 2.0.11", + "thiserror 2.0.12", "ucd-trie", ] @@ -12139,7 +12106,7 @@ dependencies = [ "pest_meta", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -12160,7 +12127,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset", - "indexmap 2.7.1", + "indexmap 2.8.0", ] [[package]] @@ -12203,7 +12170,7 @@ dependencies = [ "phf_shared", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -12217,22 +12184,22 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.1.9" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d" +checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.9" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67" +checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -12270,9 +12237,9 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "polkadot-ckb-merkle-mountain-range" @@ -12834,7 +12801,7 @@ dependencies = [ "polkavm-common 0.9.0", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -12846,7 +12813,7 @@ dependencies = [ "polkavm-common 0.10.0", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -12856,7 +12823,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ba81f7b5faac81e528eb6158a6f3c9e0bb1008e0ffa19653bc8dea925ecb429" dependencies = [ "polkavm-derive-impl 0.9.0", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -12866,7 +12833,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9324fe036de37c17829af233b46ef6b5562d4a0c09bb7fdb9f8378856dee30cf" dependencies = [ "polkavm-derive-impl 0.10.0", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -12951,9 +12918,9 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" +checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" [[package]] name = "portable-atomic-util" @@ -12972,11 +12939,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "ppv-lite86" -version = "0.2.20" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ - "zerocopy 0.7.35", + "zerocopy 0.8.23", ] [[package]] @@ -12987,12 +12954,12 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "prettyplease" -version = "0.2.29" +version = "0.2.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" +checksum = "f1ccf34da56fc294e7d4ccf69a85992b7dfb826b7cf57bac6a70bba3494cc08a" dependencies = [ "proc-macro2", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -13024,9 +12991,9 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" +checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" dependencies = [ "toml_edit", ] @@ -13074,7 +13041,7 @@ dependencies = [ "proc-macro-error-attr2", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -13085,14 +13052,14 @@ checksum = "75eea531cfcd120e0851a3f8aed42c4841f78c889eefafd96339c72677ae42c3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "proc-macro2" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" +checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" dependencies = [ "unicode-ident", ] @@ -13123,7 +13090,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -13134,7 +13101,7 @@ checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ "bit-set 0.8.0", "bit-vec 0.8.0", - "bitflags 2.8.0", + "bitflags 2.9.0", "lazy_static", "num-traits", "rand 0.8.5", @@ -13197,7 +13164,7 @@ dependencies = [ "rustc-hash 2.1.1", "rustls 0.23.23", "socket2", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tracing", ] @@ -13211,12 +13178,12 @@ dependencies = [ "bytes", "getrandom 0.2.15", "rand 0.8.5", - "ring 0.17.10", + "ring 0.17.14", "rustc-hash 2.1.1", "rustls 0.23.23", "rustls-pki-types", "slab", - "thiserror 2.0.11", + "thiserror 2.0.12", "tinyvec", "tracing", "web-time", @@ -13238,9 +13205,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.38" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" dependencies = [ "proc-macro2", ] @@ -13270,8 +13237,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" dependencies = [ "rand_chacha 0.9.0", - "rand_core 0.9.1", - "zerocopy 0.8.20", + "rand_core 0.9.3", + "zerocopy 0.8.23", ] [[package]] @@ -13291,7 +13258,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core 0.9.1", + "rand_core 0.9.3", ] [[package]] @@ -13305,12 +13272,11 @@ dependencies = [ [[package]] name = "rand_core" -version = "0.9.1" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a88e0da7a2c97baa202165137c158d0a2e824ac465d13d81046727b34cb247d3" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" dependencies = [ "getrandom 0.3.1", - "zerocopy 0.8.20", ] [[package]] @@ -13350,12 +13316,13 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.11.3" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6" +checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" dependencies = [ "pem 3.0.5", - "ring 0.16.20", + "ring 0.17.14", + "rustls-pki-types", "time", "yasna", ] @@ -13377,11 +13344,11 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.9" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f" +checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", ] [[package]] @@ -13403,27 +13370,27 @@ checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" dependencies = [ "getrandom 0.2.15", "libredox", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] name = "ref-cast" -version = "1.0.23" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931" +checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" dependencies = [ "ref-cast-impl", ] [[package]] name = "ref-cast-impl" -version = "1.0.23" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" +checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -13558,9 +13525,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.12" +version = "0.12.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" +checksum = "989e327e510263980e231de548a33e63d34962d29ae61b467389a1a09627a254" dependencies = [ "base64 0.22.1", "bytes", @@ -13568,7 +13535,7 @@ dependencies = [ "futures-core", "futures-util", "h2 0.4.8", - "http 1.2.0", + "http 1.3.1", "http-body 1.0.1", "http-body-util", "hyper 1.6.0", @@ -13602,12 +13569,11 @@ dependencies = [ [[package]] name = "resolv-conf" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +checksum = "48375394603e3dd4b2d64371f7148fd8c7baa2680e28741f2cb8d23b59e3d4c4" dependencies = [ "hostname", - "quick-error", ] [[package]] @@ -13627,7 +13593,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d0277a46f29fe3b3eb10821ca2c65a4751b686b6c84422aae31695ba167b0fbc" dependencies = [ "ahash 0.8.11", - "bitflags 2.8.0", + "bitflags 2.9.0", "instant", "num-traits", "once_cell", @@ -13645,7 +13611,7 @@ checksum = "a5a11a05ee1ce44058fa3d5961d05194fdbe3ad6b40f904af764d81b86450e6b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -13665,9 +13631,9 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.10" +version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d34b5020fcdea098ef7d95e9f89ec15952123a4a039badd09fabebe9e963e839" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if", @@ -13851,16 +13817,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver 1.0.25", -] - -[[package]] -name = "rustdoc-types" -version = "0.35.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf583db9958b3161d7980a56a8ee3c25e1a40708b81259be72584b7e0ea07c95" -dependencies = [ - "serde", + "semver 1.0.26", ] [[package]] @@ -13892,13 +13849,26 @@ version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "errno", "libc", "linux-raw-sys 0.4.15", "windows-sys 0.59.0", ] +[[package]] +name = "rustix" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7178faa4b75a30e269c71e61c353ce2748cf3d76f0c44c393f4e60abf49b825" +dependencies = [ + "bitflags 2.9.0", + "errno", + "libc", + "linux-raw-sys 0.9.2", + "windows-sys 0.59.0", +] + [[package]] name = "rustls" version = "0.21.12" @@ -13906,7 +13876,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ "log", - "ring 0.17.10", + "ring 0.17.14", "rustls-webpki 0.101.7", "sct", ] @@ -13919,25 +13889,13 @@ checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395" dependencies = [ "log", "once_cell", - "ring 0.17.10", + "ring 0.17.14", "rustls-pki-types", "rustls-webpki 0.102.8", "subtle", "zeroize", ] -[[package]] -name = "rustls-native-certs" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" -dependencies = [ - "openssl-probe", - "rustls-pemfile 1.0.4", - "schannel", - "security-framework 2.11.1", -] - [[package]] name = "rustls-native-certs" version = "0.7.3" @@ -14023,7 +13981,7 @@ version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.17.10", + "ring 0.17.14", "untrusted 0.9.0", ] @@ -14033,16 +13991,16 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring 0.17.10", + "ring 0.17.14", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustversion" -version = "1.0.19" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" +checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" [[package]] name = "rusty-fork" @@ -14079,9 +14037,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.19" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "safe-mix" @@ -14234,7 +14192,7 @@ dependencies = [ "scale-decode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -14246,7 +14204,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -14261,7 +14219,7 @@ dependencies = [ "scale-encode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -14274,7 +14232,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -14300,7 +14258,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -14322,8 +14280,8 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.98", - "thiserror 2.0.11", + "syn 2.0.100", + "thiserror 2.0.12", ] [[package]] @@ -14341,7 +14299,7 @@ dependencies = [ "scale-encode", "scale-type-resolver", "serde", - "thiserror 2.0.11", + "thiserror 2.0.12", "yap", ] @@ -14398,9 +14356,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scratch" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152" +checksum = "9f6280af86e5f559536da57a45ebc84948833b3bee313a7dd25232e09c878a52" [[package]] name = "scrypt" @@ -14432,7 +14390,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.17.10", + "ring 0.17.14", "untrusted 0.9.0", ] @@ -14513,7 +14471,7 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "core-foundation 0.9.4", "core-foundation-sys", "libc", @@ -14527,7 +14485,7 @@ version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "core-foundation 0.10.0", "core-foundation-sys", "libc", @@ -14573,9 +14531,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.25" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03" +checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" dependencies = [ "serde", ] @@ -14609,9 +14567,9 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" [[package]] name = "serde" -version = "1.0.218" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" dependencies = [ "serde_derive", ] @@ -14627,9 +14585,9 @@ dependencies = [ [[package]] name = "serde-untagged" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2676ba99bd82f75cae5cbd2c8eda6fa0b8760f18978ea840e980dd5567b5c5b6" +checksum = "299d9c19d7d466db4ab10addd5703e4c615dec2a5a16dbbafe191045e87ee66e" dependencies = [ "erased-serde", "serde", @@ -14648,29 +14606,29 @@ dependencies = [ [[package]] name = "serde_bytes" -version = "0.11.15" +version = "0.11.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a" +checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96" dependencies = [ "serde", ] [[package]] name = "serde_derive" -version = "1.0.218" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "serde_json" -version = "1.0.139" +version = "1.0.140" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6" +checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" dependencies = [ "itoa", "memchr", @@ -14680,13 +14638,13 @@ dependencies = [ [[package]] name = "serde_repr" -version = "0.1.19" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -14720,7 +14678,7 @@ dependencies = [ "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.7.1", + "indexmap 2.8.0", "serde", "serde_derive", "serde_json", @@ -14737,7 +14695,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -14878,7 +14836,7 @@ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ "num-bigint", "num-traits", - "thiserror 2.0.11", + "thiserror 2.0.12", "time", ] @@ -15053,7 +15011,7 @@ dependencies = [ "chacha20poly1305", "curve25519-dalek", "rand_core 0.6.4", - "ring 0.17.10", + "ring 0.17.14", "rustc_version 0.4.1", "sha2 0.10.8", "subtle", @@ -15071,9 +15029,9 @@ dependencies = [ [[package]] name = "snowbridge-beacon-primitives" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10bd720997e558beb556d354238fa90781deb38241cf31c1b6368738ef21c279" +checksum = "25492622eb3e9e8f4e1c8abdfc4253b71735ea2dd8f571c5054292849b1a31cd" dependencies = [ "byte-slice-cast", "frame-support", @@ -15180,9 +15138,9 @@ dependencies = [ [[package]] name = "snowbridge-pallet-ethereum-client" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d53d32d8470c643f9f8c1f508e1e34263f76297e4c9150e10e8f2e0b63992e1" +checksum = "65826ed8585a614c0818e5e8da5a57bb0da36ba3e540e193672ac66d2f131d6c" dependencies = [ "frame-benchmarking", "frame-support", @@ -15218,9 +15176,9 @@ dependencies = [ [[package]] name = "snowbridge-pallet-inbound-queue" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2e6a9d00e60e3744e6b6f0c21fea6694b9c6401ac40e41340a96e561dcf1935" +checksum = "82a21efb385a4ec84476b1eb3d850905d77a395e5e477047752981daaadcdca7" dependencies = [ "alloy-primitives 0.4.2", "alloy-sol-types 0.4.2", @@ -15457,7 +15415,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -15712,7 +15670,7 @@ checksum = "b85d0f1f1e44bd8617eb2a48203ee854981229e3e79e6f468c7175d5fd37489b" dependencies = [ "quote", "sp-crypto-hashing", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -15723,7 +15681,7 @@ checksum = "48d09fa0a5f7299fb81ee25ae3853d26200f7a348148aed6de76be905c007dbe" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -15958,7 +15916,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16170,7 +16128,7 @@ dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16283,9 +16241,9 @@ dependencies = [ [[package]] name = "staging-xcm" -version = "14.2.0" +version = "14.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96bee7cd999e9cdf10f8db72342070d456e21e82a0f5962ff3b87edbd5f2b20e" +checksum = "250c5290c308d1f462403dc4e7926976727917e98a196de1ea4a49c86341f21c" dependencies = [ "array-bytes", "bounded-collections", @@ -16389,7 +16347,7 @@ dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16400,7 +16358,7 @@ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16450,7 +16408,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16463,7 +16421,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16534,7 +16492,7 @@ dependencies = [ "subxt-lightclient", "subxt-macro", "subxt-metadata", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tokio-util", "tracing", @@ -16556,8 +16514,8 @@ dependencies = [ "scale-info", "scale-typegen", "subxt-metadata", - "syn 2.0.98", - "thiserror 2.0.11", + "syn 2.0.100", + "thiserror 2.0.12", ] [[package]] @@ -16586,7 +16544,7 @@ dependencies = [ "serde", "serde_json", "subxt-metadata", - "thiserror 2.0.11", + "thiserror 2.0.12", "tracing", ] @@ -16601,7 +16559,7 @@ dependencies = [ "serde", "serde_json", "smoldot-light", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tokio-stream", "tracing", @@ -16620,7 +16578,7 @@ dependencies = [ "scale-typegen", "subxt-codegen", "subxt-utils-fetchmetadata", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16635,7 +16593,7 @@ dependencies = [ "parity-scale-codec", "polkadot-sdk", "scale-info", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -16662,7 +16620,7 @@ dependencies = [ "serde_json", "sha2 0.10.8", "subxt-core", - "thiserror 2.0.11", + "thiserror 2.0.12", "zeroize", ] @@ -16674,7 +16632,7 @@ checksum = "526a07767a8f16a9471dda6e3d41c23f9656b302e9cdefdcd7d5a74830284a5d" dependencies = [ "hex", "parity-scale-codec", - "thiserror 2.0.11", + "thiserror 2.0.12", ] [[package]] @@ -16688,7 +16646,7 @@ dependencies = [ "hex", "once_cell", "reqwest 0.11.27", - "semver 1.0.25", + "semver 1.0.26", "serde", "serde_json", "sha2 0.10.8", @@ -16710,9 +16668,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.98" +version = "2.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1" +checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0" dependencies = [ "proc-macro2", "quote", @@ -16728,19 +16686,19 @@ dependencies = [ "paste", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "syn-solidity" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c2de690018098e367beeb793991c7d4dc7270f42c9d2ac4ccc876c1368ca430" +checksum = "d975606bae72d8aad5b07d9342465e123a2cccf53a5a735aedf81ca92a709ecb" dependencies = [ "paste", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16778,7 +16736,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -16798,7 +16756,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", "core-foundation 0.9.4", "system-configuration-sys 0.6.0", ] @@ -16831,9 +16789,9 @@ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" [[package]] name = "tangle-subxt" -version = "0.12.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45139e1710c60b47f7254407d397aa987747bcb6c42b2bdf4f787e8d3baf903b" +checksum = "67db974027a094bc4fe6476f9eceb0a72df0cd4f72603c2cfd66667cfb656b93" dependencies = [ "parity-scale-codec", "scale-info", @@ -16900,11 +16858,11 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5352447f921fda68cf61b4101566c0bdb5104eff6804d0678e5227580ab6a4e9" +checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed" dependencies = [ - "rustix 0.38.44", + "rustix 1.0.2", "windows-sys 0.59.0", ] @@ -16929,7 +16887,7 @@ dependencies = [ "serde", "serde_json", "serde_with", - "thiserror 2.0.11", + "thiserror 2.0.12", "tokio", "tokio-stream", "tokio-tar", @@ -16970,11 +16928,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.11" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" +checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" dependencies = [ - "thiserror-impl 2.0.11", + "thiserror-impl 2.0.12", ] [[package]] @@ -16985,18 +16943,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "thiserror-impl" -version = "2.0.11" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" +checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -17020,9 +16978,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.37" +version = "0.3.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" +checksum = "dad298b01a40a23aac4580b67e3dbedb7cc8402f3592d7f49469de2ea4aecdd8" dependencies = [ "deranged", "itoa", @@ -17035,15 +16993,15 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" +checksum = "765c97a5b985b7c11d7bc27fa927dc4fe6af3a6dfb021d28deb60d3bf51e76ef" [[package]] name = "time-macros" -version = "0.2.19" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" +checksum = "e8093bc3e81c3bc5f7879de09619d06c9a5a5e45ca44dfeeb7225bae38005c5c" dependencies = [ "num-conv", "time-core", @@ -17070,9 +17028,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" +checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" dependencies = [ "tinyvec_macros", ] @@ -17118,9 +17076,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.43.0" +version = "1.44.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" dependencies = [ "backtrace", "bytes", @@ -17134,21 +17092,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "tokio-cron-scheduler" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a5597b569b4712cf78aa0c9ae29742461b7bda1e49c2a5fdad1d79bf022f8f0" -dependencies = [ - "chrono", - "croner", - "num-derive", - "num-traits", - "tokio", - "tracing", - "uuid 1.14.0", -] - [[package]] name = "tokio-macros" version = "2.5.0" @@ -17157,7 +17100,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -17182,9 +17125,9 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.1" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" +checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" dependencies = [ "rustls 0.23.23", "tokio", @@ -17234,25 +17177,25 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.24.0" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" +checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" dependencies = [ "futures-util", "log", "rustls 0.23.23", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.1", - "tungstenite 0.24.0", + "tokio-rustls 0.26.2", + "tungstenite 0.26.2", "webpki-roots 0.26.8", ] [[package]] name = "tokio-util" -version = "0.7.13" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" +checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034" dependencies = [ "bytes", "futures-core", @@ -17277,7 +17220,7 @@ version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148" dependencies = [ - "indexmap 2.7.1", + "indexmap 2.8.0", "serde", "serde_spanned", "toml_datetime", @@ -17299,11 +17242,11 @@ version = "0.22.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474" dependencies = [ - "indexmap 2.7.1", + "indexmap 2.8.0", "serde", "serde_spanned", "toml_datetime", - "winnow 0.7.3", + "winnow 0.7.4", ] [[package]] @@ -17353,7 +17296,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -17438,6 +17381,17 @@ dependencies = [ "tracing-serde", ] +[[package]] +name = "trait-variant" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.100", +] + [[package]] name = "trie-db" version = "0.29.1" @@ -17493,21 +17447,20 @@ dependencies = [ [[package]] name = "tungstenite" -version = "0.24.0" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" +checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" dependencies = [ - "byteorder", "bytes", "data-encoding", - "http 1.2.0", + "http 1.3.1", "httparse", "log", - "rand 0.8.5", + "rand 0.9.0", "rustls 0.23.23", "rustls-pki-types", "sha1", - "thiserror 1.0.69", + "thiserror 2.0.12", "utf-8", ] @@ -17529,31 +17482,11 @@ dependencies = [ "static_assertions", ] -[[package]] -name = "typed-builder" -version = "0.19.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06fbd5b8de54c5f7c91f6fe4cebb949be2125d7758e630bb58b1d831dbce600" -dependencies = [ - "typed-builder-macro", -] - -[[package]] -name = "typed-builder-macro" -version = "0.19.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9534daa9fd3ed0bd911d462a37f172228077e7abf18c18a5f67199d959205f8" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.98", -] - [[package]] name = "typeid" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" [[package]] name = "typenum" @@ -17605,9 +17538,9 @@ checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217" [[package]] name = "unicode-ident" -version = "1.0.17" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe" +checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" [[package]] name = "unicode-normalization" @@ -17724,9 +17657,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.14.0" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93d59ca99a559661b96bf898d8fce28ed87935fd2bea9f05983c1464dd6c71b1" +checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" dependencies = [ "getrandom 0.3.1", ] @@ -17844,7 +17777,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "wasm-bindgen-shared", ] @@ -17879,7 +17812,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -18309,6 +18242,16 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +dependencies = [ + "windows-core 0.52.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows" version = "0.53.0" @@ -18357,7 +18300,7 @@ dependencies = [ "windows-implement", "windows-interface", "windows-result 0.2.0", - "windows-strings", + "windows-strings 0.1.0", "windows-targets 0.52.6", ] @@ -18369,7 +18312,7 @@ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -18380,18 +18323,24 @@ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] +[[package]] +name = "windows-link" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3" + [[package]] name = "windows-registry" -version = "0.2.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" +checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3" dependencies = [ - "windows-result 0.2.0", - "windows-strings", - "windows-targets 0.52.6", + "windows-result 0.3.1", + "windows-strings 0.3.1", + "windows-targets 0.53.0", ] [[package]] @@ -18412,6 +18361,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-result" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06374efe858fab7e4f881500e6e86ec8bc28f9462c47e5a9941a0142ad86b189" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-strings" version = "0.1.0" @@ -18422,6 +18380,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-strings" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-sys" version = "0.45.0" @@ -18497,13 +18464,29 @@ dependencies = [ "windows_aarch64_gnullvm 0.52.6", "windows_aarch64_msvc 0.52.6", "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm", + "windows_i686_gnullvm 0.52.6", "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-targets" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b" +dependencies = [ + "windows_aarch64_gnullvm 0.53.0", + "windows_aarch64_msvc 0.53.0", + "windows_i686_gnu 0.53.0", + "windows_i686_gnullvm 0.53.0", + "windows_i686_msvc 0.53.0", + "windows_x86_64_gnu 0.53.0", + "windows_x86_64_gnullvm 0.53.0", + "windows_x86_64_msvc 0.53.0", +] + [[package]] name = "windows_aarch64_gnullvm" version = "0.42.2" @@ -18522,6 +18505,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" + [[package]] name = "windows_aarch64_msvc" version = "0.42.2" @@ -18540,6 +18529,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" + [[package]] name = "windows_i686_gnu" version = "0.42.2" @@ -18558,12 +18553,24 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" +[[package]] +name = "windows_i686_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" + [[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_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" + [[package]] name = "windows_i686_msvc" version = "0.42.2" @@ -18582,6 +18589,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +[[package]] +name = "windows_i686_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" + [[package]] name = "windows_x86_64_gnu" version = "0.42.2" @@ -18600,6 +18613,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" + [[package]] name = "windows_x86_64_gnullvm" version = "0.42.2" @@ -18618,6 +18637,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" + [[package]] name = "windows_x86_64_msvc" version = "0.42.2" @@ -18636,6 +18661,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" + [[package]] name = "winnow" version = "0.6.26" @@ -18647,9 +18678,9 @@ dependencies = [ [[package]] name = "winnow" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e7f4ea97f6f78012141bcdb6a216b2609f0979ada50b20ca5b52dde2eac2bb1" +checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36" dependencies = [ "memchr", ] @@ -18670,7 +18701,7 @@ version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c" dependencies = [ - "bitflags 2.8.0", + "bitflags 2.9.0", ] [[package]] @@ -18744,13 +18775,12 @@ dependencies = [ [[package]] name = "xattr" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909" +checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e" dependencies = [ "libc", - "linux-raw-sys 0.4.15", - "rustix 0.38.44", + "rustix 1.0.2", ] [[package]] @@ -18762,14 +18792,14 @@ dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "xcm-runtime-apis" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f3d96bd7362d9e6884ef6762f08737d89205a358d059a0451353f3e91985ca5" +checksum = "9820d596ca59a981951d2d01924ba0d45b0ab5671fd24dacf68415dbe1fe1053" dependencies = [ "frame-support", "parity-scale-codec", @@ -18890,7 +18920,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "synstructure 0.13.1", ] @@ -18900,17 +18930,16 @@ version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ - "byteorder", "zerocopy-derive 0.7.35", ] [[package]] name = "zerocopy" -version = "0.8.20" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dde3bb8c68a8f3f1ed4ac9221aad6b10cece3e60a8e2ea54a6a2dec806d0084c" +checksum = "fd97444d05a4328b90e75e503a34bad781f14e28a823ad3557f0750df1ebcbc6" dependencies = [ - "zerocopy-derive 0.8.20", + "zerocopy-derive 0.8.23", ] [[package]] @@ -18921,38 +18950,38 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "zerocopy-derive" -version = "0.8.20" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eea57037071898bf96a6da35fd626f4f27e9cee3ead2a6c703cf09d472b2e700" +checksum = "6352c01d0edd5db859a63e2605f4ea3183ddbd15e2c4a9e7d32184df75e4f154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] name = "zerofrom" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", "synstructure 0.13.1", ] @@ -18973,7 +19002,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] @@ -18995,7 +19024,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.98", + "syn 2.0.100", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index bf94f9d..2312a9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,11 @@ -[package] -name = "{{project-name}}" +[workspace] +resolver = "2" +members = ["{{project-name}}-lib", "{{project-name}}-bin"] + +[workspace.package] version = "0.1.0" -edition = "2021" description = "{{project-description}}" +edition = "2024" authors = ["{{authors}}"] license = "MIT OR Apache-2.0" homepage = "{{project-homepage}}" @@ -10,33 +13,13 @@ repository = "https://github.com/{{gh-username}}/{{project-name}}" readme = "README.md" categories = ["cryptography", "cryptography::cryptocurrencies"] keywords = ["tangle", "blueprint", "avs"] -rust-version = "1.81" - -[dependencies] -blueprint-sdk = { git = "https://github.com/tangle-network/gadget", features = ["tangle", "macros"] } -[build-dependencies] -blueprint-sdk = { git = "https://github.com/tangle-network/gadget", features = ["build"] } +[workspace.dependencies] +{{project-name}}-blueprint-lib = { path = "{{project-name}}-lib" } -[dev-dependencies] -blueprint-sdk = { git = "https://github.com/tangle-network/gadget", features = ["testing", "tangle"] } +blueprint-sdk = { git = "https://github.com/tangle-network/blueprint.git", default-features = false } +tokio = { version = "1.43.0", default-features = false } color-eyre = "0.6.3" - -[lib] -path = "src/lib.rs" - -[[bin]] -name = "{{project-name}}" -path = "src/main.rs" - -[package.metadata.blueprint] -manager = { Evm = "HelloBlueprint" } - -[[package.metadata.gadget.Native.sources]] -owner = "{{gh-username}}" -repo = "{{project-name}}" -tag = "0.1.0" -binaries = [ - { arch = "Amd64", os = "Linux", name = "amd64-linux-{{project-name}}-gadget" }, - { arch = "Arm64", os = "Linux", name = "arm64-linux-{{project-name}}-gadget" }, -] +tower = { version = "0.5.2", default-features = false } +tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } +tracing = "0.1.41" diff --git a/build.rs b/build.rs deleted file mode 100644 index 5cd3c34..0000000 --- a/build.rs +++ /dev/null @@ -1,11 +0,0 @@ -use blueprint_sdk::build; - -fn main() { - let contract_dirs: Vec<&str> = vec!["./contracts"]; - build::utils::soldeer_update(); - build::utils::build_contracts(contract_dirs); - - println!("cargo:rerun-if-changed=src/lib.rs"); - println!("cargo:rerun-if-changed=src/main.rs"); - build::blueprint_metadata::generate_json(); -} diff --git a/src/lib.rs b/src/lib.rs deleted file mode 100644 index 16ea671..0000000 --- a/src/lib.rs +++ /dev/null @@ -1,51 +0,0 @@ -use api::services::events::JobCalled; -use blueprint_sdk::config::GadgetConfiguration; -use blueprint_sdk::event_listeners::tangle::events::TangleEventListener; -use blueprint_sdk::event_listeners::tangle::services::{ - services_post_processor, services_pre_processor, -}; -use blueprint_sdk::macros::contexts::{ServicesContext, TangleClientContext}; -use blueprint_sdk::tangle_subxt::tangle_testnet_runtime::api; - -use std::convert::Infallible; - -#[derive(Clone, TangleClientContext, ServicesContext)] -pub struct ServiceContext { - #[config] - pub config: GadgetConfiguration, - #[call_id] - pub call_id: Option, -} - -/// Returns "Hello World!" if `who` is `None`, otherwise returns "Hello, {who}!" -#[blueprint_sdk::job( - id = 0, - params(who), - result(_), - event_listener( - listener = TangleEventListener::, - pre_processor = services_pre_processor, - post_processor = services_post_processor, - ), -)] -pub fn say_hello(who: Option, context: ServiceContext) -> Result { - match who { - Some(who) => Ok(format!("Hello, {who}!")), - None => Ok("Hello World!".to_string()), - } -} - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn it_works() { - let config = GadgetConfiguration::default(); - let context = ServiceContext { config, call_id: None }; - let result = say_hello(None, context.clone()).unwrap(); - assert_eq!(result, "Hello World!"); - let result = say_hello(Some("Alice".to_string()), context).unwrap(); - assert_eq!(result, "Hello, Alice!"); - } -} diff --git a/src/main.rs b/src/main.rs deleted file mode 100644 index 91fa50c..0000000 --- a/src/main.rs +++ /dev/null @@ -1,28 +0,0 @@ -use blueprint_sdk::logging; -use blueprint_sdk::runners::core::runner::BlueprintRunner; -use blueprint_sdk::runners::tangle::tangle::TangleConfig; -use {{project-name | snake_case}} as blueprint; - -#[blueprint_sdk::main(env)] -async fn main() { - // Create your service context - // Here you can pass any configuration or context that your service needs. - let context = blueprint::ServiceContext { - config: env.clone(), - call_id: None, - }; - - // Create the event handler from the job - let say_hello_job = blueprint::SayHelloEventHandler::new(&env, context).await?; - - logging::info!("Starting the event watcher ..."); - let tangle_config = TangleConfig::default(); - BlueprintRunner::new(tangle_config, env) - .job(say_hello_job) - .run() - .await?; - - logging::info!("Exiting..."); - Ok(()) -} - diff --git a/tests/e2e.rs b/tests/e2e.rs deleted file mode 100644 index 53d4e9f..0000000 --- a/tests/e2e.rs +++ /dev/null @@ -1,52 +0,0 @@ -use blueprint_sdk::logging; -use blueprint_sdk::testing::tempfile; -use blueprint_sdk::testing::utils::harness::TestHarness; -use blueprint_sdk::testing::utils::tangle::blueprint_serde::to_field; -use blueprint_sdk::testing::utils::tangle::TangleTestHarness; -use blueprint_sdk::tokio; -use {{project-name | snake_case}}::{SayHelloEventHandler, ServiceContext}; - -#[tokio::test] -async fn test_blueprint() -> color_eyre::Result<()> { - logging::setup_log(); - - // Initialize test harness (node, keys, deployment) - let temp_dir = tempfile::TempDir::new()?; - let harness = TangleTestHarness::setup(temp_dir).await?; - let env = harness.env().clone(); - - // Setup service - let (mut test_env, service_id, _) = harness.setup_services::<1>(false).await?; - test_env.initialize().await?; - - let handles = test_env.node_handles().await; - for handle in handles { - let config = handle.gadget_config().await; - // Create blueprint-specific context - let blueprint_ctx = ServiceContext { - config: config.clone(), - call_id: None, - }; - - // Initialize event handler - let handler = SayHelloEventHandler::new(&config, blueprint_ctx) - .await - .unwrap(); - - handle.add_job(handler).await; - } - - test_env.start().await?; - - // Execute job and verify result - let job_inputs = vec![to_field("Alice").unwrap()]; - let expected_outputs = vec![to_field("Hello, Alice!").unwrap()]; - - let job = harness.submit_job(service_id, 0, job_inputs).await?; - - let results = harness.wait_for_job_execution(service_id, job).await?; - - assert_eq!(results.service_id, service_id); - assert_eq!(results.result, expected_outputs); - Ok(()) -} diff --git a/{{project-name}}-bin/Cargo.toml b/{{project-name}}-bin/Cargo.toml new file mode 100644 index 0000000..37c8e50 --- /dev/null +++ b/{{project-name}}-bin/Cargo.toml @@ -0,0 +1,35 @@ +[package] +name = "{{project-name}}-blueprint-bin" +version = "0.1.0" +description.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +homepage.workspace = true +repository.workspace = true +readme.workspace = true +categories.workspace = true +keywords.workspace = true + +[dependencies] +{{project-name}}-blueprint-lib.workspace = true + +blueprint-sdk = { workspace = true, features = ["std"] } +tokio = { workspace = true, features = ["rt-multi-thread"] } +tracing-subscriber = { workspace = true, features = ["env-filter"] } +tracing = { workspace = true } +tower.workspace = true + +[build-dependencies] +{{project-name}}-blueprint-lib.workspace = true +blueprint-sdk = { workspace = true, features = ["macros", "build"] } + +# TODO: Not yet supported by blueprint-manager: https://github.com/tangle-network/blueprint/issues/730 +#[[package.metadata.gadget.Native.sources]] +#owner = "{{gh-username}}" +#repo = "{{project-name}}" +#tag = "0.1.0" +#binaries = [ +# { arch = "Amd64", os = "Linux", name = "amd64-linux-{{project-name}}-gadget" }, +# { arch = "Arm64", os = "Linux", name = "arm64-linux-{{project-name}}-gadget" }, +#] \ No newline at end of file diff --git a/{{project-name}}-bin/build.rs b/{{project-name}}-bin/build.rs new file mode 100644 index 0000000..4d3940a --- /dev/null +++ b/{{project-name}}-bin/build.rs @@ -0,0 +1,46 @@ +use blueprint_sdk::build; +use blueprint_sdk::tangle::blueprint; +use std::path::Path; +use std::process; +use {{project-name | snake_case}}_blueprint_lib::say_hello; + +fn main() { + // Automatically update dependencies with `soldeer` (if available), and build the contracts. + // + // Note that this is provided for convenience, and is not necessary if you wish to handle the + // contract build step yourself. + let contract_dirs: Vec<&str> = vec!["../contracts"]; + build::utils::soldeer_install(); + build::utils::soldeer_update(); + build::utils::build_contracts(contract_dirs); + + println!("cargo::rerun-if-changed=../{{project-name}}-lib"); + + // The `blueprint!` macro generates the info necessary for the `blueprint.json`. + // See its docs for all available metadata fields. + let blueprint = blueprint! { + name: "experiment", + master_manager_revision: "Latest", + manager: { Evm = "HelloBlueprint" }, + jobs: [say_hello] + }; + + match blueprint { + Ok(blueprint) => { + // TODO: Should be a helper function probably + let json = blueprint_sdk::tangle::metadata::macros::ext::serde_json::to_string_pretty( + &blueprint, + ) + .unwrap(); + std::fs::write( + Path::new(env!("CARGO_WORKSPACE_DIR")).join("blueprint.json"), + json.as_bytes(), + ) + .unwrap(); + } + Err(e) => { + println!("cargo::error={e:?}"); + process::exit(1); + } + } +} diff --git a/{{project-name}}-bin/src/main.rs b/{{project-name}}-bin/src/main.rs new file mode 100644 index 0000000..1951249 --- /dev/null +++ b/{{project-name}}-bin/src/main.rs @@ -0,0 +1,98 @@ +use blueprint_sdk::Job; +use blueprint_sdk::Router; +use blueprint_sdk::contexts::tangle::TangleClientContext; +use blueprint_sdk::crypto::sp_core::SpSr25519; +use blueprint_sdk::crypto::tangle_pair_signer::TanglePairSigner; +use blueprint_sdk::keystore::backends::Backend; +use blueprint_sdk::runner::BlueprintRunner; +use blueprint_sdk::runner::config::BlueprintEnvironment; +use blueprint_sdk::runner::tangle::config::TangleConfig; +use blueprint_sdk::tangle::consumer::TangleConsumer; +use blueprint_sdk::tangle::filters::MatchesServiceId; +use blueprint_sdk::tangle::layers::TangleLayer; +use blueprint_sdk::tangle::producer::TangleProducer; +use {{project-name | snake_case}}_blueprint_lib::{MyContext, SAY_HELLO_JOB_ID, say_hello}; +use tower::filter::FilterLayer; +use tracing::error; +use tracing::level_filters::LevelFilter; + +#[tokio::main] +async fn main() -> Result<(), blueprint_sdk::Error> { + setup_log(); + + let env = BlueprintEnvironment::load()?; + let sr25519_signer = env.keystore().first_local::()?; + let sr25519_pair = env.keystore().get_secret::(&sr25519_signer)?; + let st25519_signer = TanglePairSigner::new(sr25519_pair.0); + + let tangle_client = env.tangle_client().await?; + let tangle_producer = + TangleProducer::finalized_blocks(tangle_client.rpc_client.clone()).await?; + let tangle_consumer = TangleConsumer::new(tangle_client.rpc_client.clone(), st25519_signer); + + let tangle_config = TangleConfig::default(); + + let service_id = env.protocol_settings.tangle()?.service_id.unwrap(); + let result = BlueprintRunner::builder(tangle_config, env) + .router( + // A router + // + // Each "route" is a job ID and the job function. We can also support arbitrary `Service`s from `tower`, + // which may make it easier for people to port over existing services to a blueprint. + Router::new() + // The route defined here has a `TangleLayer`, which adds metadata to the + // produced `JobResult`s, making it visible to a `TangleConsumer`. + .route(SAY_HELLO_JOB_ID, say_hello.layer(TangleLayer)) + // Add the `FilterLayer` to filter out job calls that don't match the service ID + // + // This layer is global to the router, and is applied to every job call. + .layer(FilterLayer::new(MatchesServiceId(service_id))) + // We can add a context to the router, which will be passed to all job functions + // that have the `Context` extractor. + // + // A context can be used for global state between job calls, such as a database. + // + // It is important to note that the context is **cloned** for each job call, so + // the context must be cheaply cloneable. + .with_context(MyContext::new()), + ) + // Add potentially many producers + // + // A producer is simply a `Stream` that outputs `JobCall`s, which are passed down to the intended + // job functions. + .producer(tangle_producer) + // Add potentially many consumers + // + // A consumer is simply a `Sink` that consumes `JobResult`s, which are the output of the job functions. + // Every result will be passed to every consumer. It is the responsibility of the consumer + // to determine whether or not to process a result. + .consumer(tangle_consumer) + // Custom shutdown handlers + // + // Now users can specify what to do when an error occurs and the runner is shutting down. + // That can be cleanup logic, finalizing database transactions, etc. + .with_shutdown_handler(async { println!("Shutting down!") }) + .run() + .await; + + if let Err(e) = result { + error!("Runner failed! {e:?}"); + } + + Ok(()) +} + +pub fn setup_log() { + use tracing_subscriber::util::SubscriberInitExt; + + let _ = tracing_subscriber::fmt::SubscriberBuilder::default() + .without_time() + .with_span_events(tracing_subscriber::fmt::format::FmtSpan::NONE) + .with_env_filter( + tracing_subscriber::EnvFilter::builder() + .with_default_directive(LevelFilter::INFO.into()) + .from_env_lossy(), + ) + .finish() + .try_init(); +} diff --git a/{{project-name}}-lib/Cargo.toml b/{{project-name}}-lib/Cargo.toml new file mode 100644 index 0000000..da6e67a --- /dev/null +++ b/{{project-name}}-lib/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "{{project-name}}-blueprint-lib" +version = "0.1.0" +description.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +homepage.workspace = true +repository.workspace = true +readme.workspace = true +categories.workspace = true +keywords.workspace = true + +[dependencies] +blueprint-sdk = { workspace = true, features = ["std", "tangle", "macros"] } +tokio = { workspace = true, features = ["sync"] } + +[dev-dependencies] +blueprint-sdk = { workspace = true, features = ["testing", "tangle"] } +tokio = { workspace = true, features = ["macros"] } +color-eyre = { workspace = true } + +[package.metadata.blueprint] +manager = { Evm = "ExperimentalBlueprint" } +master_revision = "Latest" \ No newline at end of file diff --git a/{{project-name}}-lib/src/lib.rs b/{{project-name}}-lib/src/lib.rs new file mode 100644 index 0000000..a2782ee --- /dev/null +++ b/{{project-name}}-lib/src/lib.rs @@ -0,0 +1,98 @@ +use blueprint_sdk::extract::Context; +use blueprint_sdk::tangle::extract::{Optional, TangleArg, TangleResult}; +use std::sync::Arc; +use std::sync::atomic::{AtomicUsize, Ordering}; + +// The job ID (to be generated?) +pub const SAY_HELLO_JOB_ID: u32 = 0; + +// A context struct +// +// The context of a blueprint is set in the `Router`, and passed down to the job functions. See +// `foo-bin/src/main.rs`. +// +// This simply counts the number of times the `say_hello` job has been called, but it could be any +// global state needed by the blueprint. +#[derive(Clone)] +pub struct MyContext { + total_greetings: Arc, +} + +impl MyContext { + pub fn new() -> Self { + Self { + total_greetings: Arc::new(AtomicUsize::new(0)), + } + } +} + +// The job function +// +// The arguments are made up of "extractors", which take a portion of the `JobCall` to convert into the +// target type. +// +// The context is passed in as a parameter, and can be used to store any shared state between job calls. +pub async fn say_hello( + Context(ctx): Context, + TangleArg(Optional(who)): TangleArg>, +) -> TangleResult { + let greeting = match who { + Some(who) => format!("Hello, {who}!"), + None => "Hello World!".to_string(), + }; + + ctx.total_greetings.fetch_add(1, Ordering::SeqCst); + + // The result is then converted into a `JobResult` to be sent back to the caller. + TangleResult(greeting) +} + +#[cfg(test)] +mod tests { + use super::*; + use blueprint_sdk::{JobResult, IntoJobResult, tangle_subxt}; + use tangle_subxt::tangle_testnet_runtime::api::runtime_types::tangle_primitives::services::field::Field; + use tangle_subxt::subxt_core::utils::AccountId32; + use blueprint_sdk::serde::new_bounded_string; + use tangle_subxt::parity_scale_codec::Decode; + + #[tokio::test] + async fn it_works() { + let context = MyContext::new(); + let JobResult::Ok { + body: result_raw, .. + } = say_hello(Context(context.clone()), TangleArg(None.into())) + .await + .into_job_result() + .unwrap() + else { + panic!("Job call failed"); + }; + + let result = Vec::>::decode(&mut (&*result_raw)).expect("Bad result"); + assert_eq!( + result, + vec![Field::String(new_bounded_string("Hello World!"))] + ); + + let JobResult::Ok { + body: result2_raw, .. + } = say_hello( + Context(context.clone()), + TangleArg(Some("Alice".to_string()).into()), + ) + .await + .into_job_result() + .unwrap() + else { + panic!("Job call failed"); + }; + let result2 = Vec::>::decode(&mut (&*result2_raw)).expect("Bad result"); + assert_eq!( + result2, + vec![Field::String(new_bounded_string("Hello, Alice!"))] + ); + + assert_eq!(context.total_greetings.load(Ordering::SeqCst), 2); + } +} diff --git a/{{project-name}}-lib/tests/e2e.rs b/{{project-name}}-lib/tests/e2e.rs new file mode 100644 index 0000000..a224baf --- /dev/null +++ b/{{project-name}}-lib/tests/e2e.rs @@ -0,0 +1,44 @@ +use blueprint_sdk::Job; +use blueprint_sdk::tangle::layers::TangleLayer; +use blueprint_sdk::testing::tempfile; +use blueprint_sdk::testing::utils::harness::TestHarness; +use blueprint_sdk::testing::utils::setup_log; +use blueprint_sdk::testing::utils::tangle::TangleTestHarness; +use blueprint_sdk::testing::utils::tangle::blueprint_serde::to_field; +use {{project-name | snake_case}}_blueprint_lib::{MyContext, say_hello}; + +// The number of nodes to spawn in the test +const N: usize = 1; + +#[tokio::test] +async fn test_blueprint() -> color_eyre::Result<()> { + setup_log(); + + // Initialize test harness (node, keys, deployment) + let temp_dir = tempfile::TempDir::new()?; + let context = MyContext::new(); + let harness = TangleTestHarness::setup(temp_dir, context).await?; + + // Setup service with `N` nodes + let (mut test_env, service_id, _) = harness.setup_services::(false).await?; + + // Setup the node(s) + test_env.initialize().await?; + test_env.add_job(say_hello.layer(TangleLayer)).await; + + // Start the test environment. It is now ready to receive job calls. + test_env.start().await?; + + // Submit the job call + let job_inputs = vec![to_field(Some("Alice")).unwrap()]; + let job = harness.submit_job(service_id, 0, job_inputs).await?; + + let results = harness.wait_for_job_execution(service_id, job).await?; + + // Verify results match expected output + let expected_outputs = vec![to_field("Hello, Alice!").unwrap()]; + harness.verify_job(&results, expected_outputs); + + assert_eq!(results.service_id, service_id); + Ok(()) +}