From dbf28850b9d6811bfbbb4ef1f7d501d00c05cea6 Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Tue, 6 Feb 2024 11:23:07 -0800 Subject: [PATCH] Bump Cargo.lock --- Cargo.lock | 310 +++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 266 insertions(+), 44 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7bda24ae8b..9ed5802299 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1943,7 +1943,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.11", "indexmap 2.1.0", "slab", "tokio", @@ -2040,6 +2040,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" version = "0.4.6" @@ -2047,7 +2058,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] @@ -2074,7 +2085,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "httparse", "httpdate", @@ -2094,7 +2105,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", + "http 0.2.11", "hyper", "log", "rustls", @@ -2884,7 +2895,7 @@ dependencies = [ "base64 0.21.5", "libc", "sha2 0.10.8", - "soroban-env-host", + "soroban-env-host 20.2.1", "soroban-simulation", ] @@ -3050,7 +3061,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "hyper", "hyper-rustls", @@ -3530,6 +3541,17 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "soroban-builtin-sdk-macros" +version = "20.2.0" +source = "git+https://github.com/stellar/rs-soroban-env?rev=1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e#1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e" +dependencies = [ + "itertools 0.11.0", + "proc-macro2", + "quote", + "syn 2.0.39", +] + [[package]] name = "soroban-builtin-sdk-macros" version = "20.2.1" @@ -3563,7 +3585,7 @@ dependencies = [ "gix", "heck", "hex", - "http", + "http 0.2.11", "hyper", "hyper-tls", "itertools 0.10.5", @@ -3583,12 +3605,13 @@ dependencies = [ "serde_json", "sha2 0.10.8", "shlex", - "soroban-env-host", - "soroban-ledger-snapshot", - "soroban-sdk", - "soroban-spec", + "soroban-env-host 20.2.1", + "soroban-ledger-snapshot 20.3.1", + "soroban-rpc", + "soroban-sdk 20.3.1", + "soroban-spec 20.3.1", "soroban-spec-json", - "soroban-spec-rust", + "soroban-spec-rust 20.3.1", "soroban-spec-tools", "soroban-spec-typescript", "stellar-strkey 0.0.7", @@ -3609,6 +3632,22 @@ dependencies = [ "which", ] +[[package]] +name = "soroban-env-common" +version = "20.2.0" +source = "git+https://github.com/stellar/rs-soroban-env?rev=1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e#1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e" +dependencies = [ + "crate-git-revision 0.0.6", + "ethnum", + "num-derive", + "num-traits", + "serde", + "soroban-env-macros 20.2.0", + "soroban-wasmi 0.31.1-soroban.20.0.1 (git+https://github.com/stellar/wasmi?rev=0ed3f3dee30dc41ebe21972399e0a73a41944aa0)", + "static_assertions", + "stellar-xdr", +] + [[package]] name = "soroban-env-common" version = "20.2.1" @@ -3621,22 +3660,56 @@ dependencies = [ "num-derive", "num-traits", "serde", - "soroban-env-macros", - "soroban-wasmi", + "soroban-env-macros 20.2.1", + "soroban-wasmi 0.31.1-soroban.20.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions", "stellar-xdr", ] +[[package]] +name = "soroban-env-guest" +version = "20.2.0" +source = "git+https://github.com/stellar/rs-soroban-env?rev=1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e#1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e" +dependencies = [ + "soroban-env-common 20.2.0", + "static_assertions", +] + [[package]] name = "soroban-env-guest" version = "20.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "280d73550935d482534abf3f897e89b40461b3401c3209163b3d0038f0b8b201" dependencies = [ - "soroban-env-common", + "soroban-env-common 20.2.1", "static_assertions", ] +[[package]] +name = "soroban-env-host" +version = "20.2.0" +source = "git+https://github.com/stellar/rs-soroban-env?rev=1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e#1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e" +dependencies = [ + "curve25519-dalek 4.1.1", + "ed25519-dalek 2.0.0", + "getrandom", + "hex-literal", + "hmac 0.12.1", + "k256", + "num-derive", + "num-integer", + "num-traits", + "rand", + "rand_chacha", + "sha2 0.10.8", + "sha3", + "soroban-builtin-sdk-macros 20.2.0", + "soroban-env-common 20.2.0", + "soroban-wasmi 0.31.1-soroban.20.0.1 (git+https://github.com/stellar/wasmi?rev=0ed3f3dee30dc41ebe21972399e0a73a41944aa0)", + "static_assertions", + "stellar-strkey 0.0.8", +] + [[package]] name = "soroban-env-host" version = "20.2.1" @@ -3657,13 +3730,27 @@ dependencies = [ "rand_chacha", "sha2 0.10.8", "sha3", - "soroban-builtin-sdk-macros", - "soroban-env-common", - "soroban-wasmi", + "soroban-builtin-sdk-macros 20.2.1", + "soroban-env-common 20.2.1", + "soroban-wasmi 0.31.1-soroban.20.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions", "stellar-strkey 0.0.8", ] +[[package]] +name = "soroban-env-macros" +version = "20.2.0" +source = "git+https://github.com/stellar/rs-soroban-env?rev=1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e#1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e" +dependencies = [ + "itertools 0.11.0", + "proc-macro2", + "quote", + "serde", + "serde_json", + "stellar-xdr", + "syn 2.0.39", +] + [[package]] name = "soroban-env-macros" version = "20.2.1" @@ -3683,6 +3770,19 @@ dependencies = [ name = "soroban-hello" version = "20.3.0" +[[package]] +name = "soroban-ledger-snapshot" +version = "20.3.0" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de#4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de" +dependencies = [ + "serde", + "serde_json", + "serde_with", + "soroban-env-common 20.2.0", + "soroban-env-host 20.2.0", + "thiserror", +] + [[package]] name = "soroban-ledger-snapshot" version = "20.3.1" @@ -3692,9 +3792,57 @@ dependencies = [ "serde", "serde_json", "serde_with", - "soroban-env-common", - "soroban-env-host", + "soroban-env-common 20.2.1", + "soroban-env-host 20.2.1", + "thiserror", +] + +[[package]] +name = "soroban-rpc" +version = "20.3.0" +dependencies = [ + "base64 0.21.5", + "clap", + "ed25519-dalek 2.0.0", + "ethnum", + "hex", + "http 1.0.0", + "itertools 0.10.5", + "jsonrpsee-core", + "jsonrpsee-http-client", + "serde", + "serde-aux", + "serde_json", + "sha2 0.10.8", + "soroban-env-host 20.2.0", + "soroban-sdk 20.3.0", + "soroban-spec 20.3.0", + "soroban-spec-tools", + "stellar-strkey 0.0.7", + "stellar-xdr", + "termcolor", + "termcolor_output", "thiserror", + "tokio", + "tracing", + "wasmparser 0.90.0", + "which", +] + +[[package]] +name = "soroban-sdk" +version = "20.3.0" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de#4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de" +dependencies = [ + "bytes-lit", + "rand", + "serde", + "serde_json", + "soroban-env-guest 20.2.0", + "soroban-env-host 20.2.0", + "soroban-ledger-snapshot 20.3.0", + "soroban-sdk-macros 20.3.0", + "stellar-strkey 0.0.8", ] [[package]] @@ -3710,13 +3858,32 @@ dependencies = [ "rand", "serde", "serde_json", - "soroban-env-guest", - "soroban-env-host", - "soroban-ledger-snapshot", - "soroban-sdk-macros", + "soroban-env-guest 20.2.1", + "soroban-env-host 20.2.1", + "soroban-ledger-snapshot 20.3.1", + "soroban-sdk-macros 20.3.1", "stellar-strkey 0.0.8", ] +[[package]] +name = "soroban-sdk-macros" +version = "20.3.0" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de#4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de" +dependencies = [ + "crate-git-revision 0.0.6", + "darling", + "itertools 0.11.0", + "proc-macro2", + "quote", + "rustc_version", + "sha2 0.10.8", + "soroban-env-common 20.2.0", + "soroban-spec 20.3.0", + "soroban-spec-rust 20.3.0", + "stellar-xdr", + "syn 2.0.39", +] + [[package]] name = "soroban-sdk-macros" version = "20.3.1" @@ -3730,9 +3897,9 @@ dependencies = [ "quote", "rustc_version", "sha2 0.10.8", - "soroban-env-common", - "soroban-spec", - "soroban-spec-rust", + "soroban-env-common 20.2.1", + "soroban-spec 20.3.1", + "soroban-spec-rust 20.3.1", "stellar-xdr", "syn 2.0.39", ] @@ -3745,11 +3912,22 @@ checksum = "210b093c6d08b8e85ef5f4e4a231d5fa25d1d2787d4fecd50e11040849f259ba" dependencies = [ "anyhow", "rand", - "soroban-env-host", + "soroban-env-host 20.2.1", "static_assertions", "thiserror", ] +[[package]] +name = "soroban-spec" +version = "20.3.0" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de#4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de" +dependencies = [ + "base64 0.13.1", + "stellar-xdr", + "thiserror", + "wasmparser 0.88.0", +] + [[package]] name = "soroban-spec" version = "20.3.1" @@ -3771,8 +3949,23 @@ dependencies = [ "serde_derive", "serde_json", "sha2 0.9.9", - "soroban-spec", + "soroban-spec 20.3.1", + "stellar-xdr", + "thiserror", +] + +[[package]] +name = "soroban-spec-rust" +version = "20.3.0" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de#4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de" +dependencies = [ + "prettyplease", + "proc-macro2", + "quote", + "sha2 0.10.8", + "soroban-spec 20.3.0", "stellar-xdr", + "syn 2.0.39", "thiserror", ] @@ -3786,7 +3979,7 @@ dependencies = [ "proc-macro2", "quote", "sha2 0.10.8", - "soroban-spec", + "soroban-spec 20.3.1", "stellar-xdr", "syn 2.0.39", "thiserror", @@ -3801,7 +3994,8 @@ dependencies = [ "hex", "itertools 0.10.5", "serde_json", - "soroban-spec", + "soroban-env-host 20.2.1", + "soroban-spec 20.3.1", "stellar-strkey 0.0.7", "stellar-xdr", "thiserror", @@ -3824,7 +4018,7 @@ dependencies = [ "serde_derive", "serde_json", "sha2 0.9.9", - "soroban-spec", + "soroban-spec 20.3.1", "stellar-xdr", "temp-dir", "thiserror", @@ -3843,10 +4037,10 @@ dependencies = [ "serde_json", "sha2 0.10.8", "soroban-cli", - "soroban-env-host", - "soroban-ledger-snapshot", - "soroban-sdk", - "soroban-spec", + "soroban-env-host 20.2.1", + "soroban-ledger-snapshot 20.3.1", + "soroban-sdk 20.3.1", + "soroban-spec 20.3.1", "soroban-spec-tools", "stellar-strkey 0.0.7", "thiserror", @@ -3860,7 +4054,7 @@ version = "20.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "867bd2927e092f2bbf65d1e3cda9f89fa1d1eea935776416bf3ead47fccc82ef" dependencies = [ - "soroban-sdk", + "soroban-sdk 20.3.1", ] [[package]] @@ -3871,8 +4065,20 @@ checksum = "710403de32d0e0c35375518cb995d4fc056d0d48966f2e56ea471b8cb8fc9719" dependencies = [ "smallvec", "spin", - "wasmi_arena", - "wasmi_core", + "wasmi_arena 0.4.1", + "wasmi_core 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmparser-nostd", +] + +[[package]] +name = "soroban-wasmi" +version = "0.31.1-soroban.20.0.1" +source = "git+https://github.com/stellar/wasmi?rev=0ed3f3dee30dc41ebe21972399e0a73a41944aa0#0ed3f3dee30dc41ebe21972399e0a73a41944aa0" +dependencies = [ + "smallvec", + "spin", + "wasmi_arena 0.4.0", + "wasmi_core 0.13.0 (git+https://github.com/stellar/wasmi?rev=0ed3f3dee30dc41ebe21972399e0a73a41944aa0)", "wasmparser-nostd", ] @@ -4066,28 +4272,28 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" name = "test_custom_types" version = "20.3.0" dependencies = [ - "soroban-sdk", + "soroban-sdk 20.3.1", ] [[package]] name = "test_hello_world" version = "20.3.0" dependencies = [ - "soroban-sdk", + "soroban-sdk 20.3.1", ] [[package]] name = "test_swap" version = "20.3.0" dependencies = [ - "soroban-sdk", + "soroban-sdk 20.3.1", ] [[package]] name = "test_token" version = "20.3.0" dependencies = [ - "soroban-sdk", + "soroban-sdk 20.3.1", "soroban-token-sdk", ] @@ -4095,7 +4301,7 @@ dependencies = [ name = "test_udt" version = "20.3.0" dependencies = [ - "soroban-sdk", + "soroban-sdk 20.3.1", ] [[package]] @@ -4656,6 +4862,11 @@ dependencies = [ "cxx-build", ] +[[package]] +name = "wasmi_arena" +version = "0.4.0" +source = "git+https://github.com/stellar/wasmi?rev=0ed3f3dee30dc41ebe21972399e0a73a41944aa0#0ed3f3dee30dc41ebe21972399e0a73a41944aa0" + [[package]] name = "wasmi_arena" version = "0.4.1" @@ -4674,6 +4885,17 @@ dependencies = [ "paste", ] +[[package]] +name = "wasmi_core" +version = "0.13.0" +source = "git+https://github.com/stellar/wasmi?rev=0ed3f3dee30dc41ebe21972399e0a73a41944aa0#0ed3f3dee30dc41ebe21972399e0a73a41944aa0" +dependencies = [ + "downcast-rs", + "libm", + "num-traits", + "paste", +] + [[package]] name = "wasmparser" version = "0.88.0"