From 18e45a3aeda54cf48667bce554bcdf7458dff807 Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Tue, 6 Feb 2024 14:46:09 -0800 Subject: [PATCH] Fix dependencies --- cmd/crates/soroban-rpc/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/crates/soroban-rpc/Cargo.toml b/cmd/crates/soroban-rpc/Cargo.toml index 966597a22..bbe126cc8 100644 --- a/cmd/crates/soroban-rpc/Cargo.toml +++ b/cmd/crates/soroban-rpc/Cargo.toml @@ -17,12 +17,12 @@ crate-type = ["rlib"] [dependencies] -soroban-sdk = { version = "=20.3.0", git = "https://github.com/stellar/rs-soroban-sdk", rev = "4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de" } +soroban-sdk = { workspace = true } soroban-spec-tools = { version = "20.2.0", path = "../soroban-spec-tools" } -soroban-env-host = { version = "=20.2.0", git = "https://github.com/stellar/rs-soroban-env", rev = "1bfc0f2a2ee134efc1e1b0d5270281d0cba61c2e" } +soroban-env-host = { workspace = true } stellar-strkey = "0.0.7" stellar-xdr = { version = "=20.1.0", default-features = true, features = ["curr", "std", "serde"] } -soroban-spec = { version = "=20.3.0", git = "https://github.com/stellar/rs-soroban-sdk", rev = "4aef54ff9295c2fca4c5b9fbd2c92d0ff99f67de" } +soroban-spec = { workspace = true } termcolor = "1.1.3" termcolor_output = "1.0.1"