From df53ff68a681f0a2688f134c6199499a9f8ba10f Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Thu, 1 Aug 2024 04:01:56 +0000 Subject: [PATCH] bump version --- Cargo.lock | 12 +++++------- Cargo.toml | 12 ++++++++---- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6cf45f4..a9c6564 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -723,13 +723,11 @@ dependencies = [ [[package]] name = "drillx" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed194680ad239acd0779eb590f4205da5b8268ab58d31e891d24fb2c44742178" +version = "2.0.0" dependencies = [ - "blake3", "equix", "serde", + "sha3 0.10.8", "solana-program", "strum", ] @@ -1287,7 +1285,7 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "ore-api" -version = "2.0.0" +version = "2.1.0" dependencies = [ "array-const-fn-init", "bytemuck", @@ -1305,7 +1303,7 @@ dependencies = [ [[package]] name = "ore-program" -version = "2.0.0" +version = "2.1.0" dependencies = [ "drillx", "mpl-token-metadata", @@ -1319,7 +1317,7 @@ dependencies = [ [[package]] name = "ore-utils" -version = "2.0.0" +version = "2.1.0" dependencies = [ "bytemuck", "solana-program", diff --git a/Cargo.toml b/Cargo.toml index 7622863..28bf917 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["api", "program", "utils"] [workspace.package] -version = "2.0.0" +version = "2.1.0" edition = "2021" license = "Apache-2.0" homepage = "https://ore.supply" @@ -16,13 +16,17 @@ keywords = ["solana", "crypto", "mining"] array-const-fn-init = "0.1.1" bytemuck = "1.14.3" const-crypto = "0.1.0" -drillx = { version = "1.0.0", features = ["solana"] } +drillx = { version = "2.0.0", features = ["solana"] } mpl-token-metadata = "4.1.2" num_enum = "0.7.2" -ore-api = { path = "api", version = "2.0.0" } -ore-utils = { path = "utils", features = ["spl"], version = "2.0.0" } +ore-api = { path = "api", version = "2.1.0" } +ore-utils = { path = "utils", features = ["spl"], version = "2.1.0" } solana-program = "^1.18" spl-token = { version = "^4", features = ["no-entrypoint"] } spl-associated-token-account = { version = "^2.3", features = [ "no-entrypoint" ] } static_assertions = "1.1.0" thiserror = "1.0.57" + +[patch.crates-io] +drillx = { path = "../drillx/drillx" } +