From 0c4e0efe328f64909b01ffbd92353c71774ac967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dj8yf0=CE=BCl?= Date: Mon, 15 Jan 2024 19:06:29 +0200 Subject: [PATCH] Revert "test: test `nearcore` crates patched versions from `nagisa/makes-runtimes-non-default`" This reverts commit 22aedbf10d97d9f3c6470eed6fbd5c4e6ff3b7ad. --- near-sdk/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/near-sdk/Cargo.toml b/near-sdk/Cargo.toml index bff721d6f..789dd2eaa 100644 --- a/near-sdk/Cargo.toml +++ b/near-sdk/Cargo.toml @@ -40,11 +40,11 @@ near-token = { version = "0.2.0", features = ["serde", "borsh"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -near-vm-runner = { version = "0.0.0", git = "https://github.com/near/nearcore", branch = "nagisa/makes-runtimes-non-default", optional = true } -near-primitives-core = { version = "0.0.0", git = "https://github.com/near/nearcore", branch = "nagisa/makes-runtimes-non-default", optional = true } -near-primitives = { version = "0.0.0", git = "https://github.com/near/nearcore", branch = "nagisa/makes-runtimes-non-default", optional = true } -near-crypto = { version = "0.0.0", git = "https://github.com/near/nearcore", branch = "nagisa/makes-runtimes-non-default", optional = true } -near-parameters = { version = "0.0.0", git = "https://github.com/near/nearcore", branch = "nagisa/makes-runtimes-non-default", optional = true } +near-vm-runner = { version = "0.19", default_features = false, optional = true } +near-primitives-core = { version = "0.19", optional = true } +near-primitives = { version = "0.19", optional = true } +near-crypto = { version = "0.19", optional = true } +near-parameters = { version = "0.19", optional = true } [dev-dependencies] rand = "0.8.4"