This commit is contained in:
Hardhat Chad
2024-06-29 12:44:32 +00:00
parent 9c1cc9babf
commit 54fd80e735
3 changed files with 21 additions and 26 deletions

26
Cargo.lock generated
View File

@@ -670,15 +670,6 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
[[package]]
name = "bs58"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896"
dependencies = [
"tinyvec",
]
[[package]] [[package]]
name = "bs64" name = "bs64"
version = "0.1.2" version = "0.1.2"
@@ -2595,7 +2586,6 @@ name = "ore-api"
version = "2.0.0" version = "2.0.0"
dependencies = [ dependencies = [
"array-const-fn-init", "array-const-fn-init",
"bs58 0.5.0",
"bytemuck", "bytemuck",
"const-crypto", "const-crypto",
"drillx", "drillx",
@@ -3676,7 +3666,7 @@ dependencies = [
"Inflector", "Inflector",
"base64 0.21.7", "base64 0.21.7",
"bincode", "bincode",
"bs58 0.4.0", "bs58",
"bv", "bv",
"lazy_static", "lazy_static",
"serde", "serde",
@@ -3986,7 +3976,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35a0b24cc4d0ebd5fd45d6bd47bed3790f8a75ade67af8ff24a3d719a8bc93bc" checksum = "35a0b24cc4d0ebd5fd45d6bd47bed3790f8a75ade67af8ff24a3d719a8bc93bc"
dependencies = [ dependencies = [
"block-buffer 0.10.4", "block-buffer 0.10.4",
"bs58 0.4.0", "bs58",
"bv", "bv",
"either", "either",
"generic-array", "generic-array",
@@ -4139,7 +4129,7 @@ dependencies = [
"borsh 0.10.3", "borsh 0.10.3",
"borsh 0.9.3", "borsh 0.9.3",
"borsh 1.5.0", "borsh 1.5.0",
"bs58 0.4.0", "bs58",
"bv", "bv",
"bytemuck", "bytemuck",
"cc", "cc",
@@ -4325,7 +4315,7 @@ dependencies = [
"async-trait", "async-trait",
"base64 0.21.7", "base64 0.21.7",
"bincode", "bincode",
"bs58 0.4.0", "bs58",
"indicatif", "indicatif",
"log", "log",
"reqwest", "reqwest",
@@ -4349,7 +4339,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a31feddef24d3e0aab189571adea7f109639ef6179fcd3cd34ffc8c73d3409f1" checksum = "a31feddef24d3e0aab189571adea7f109639ef6179fcd3cd34ffc8c73d3409f1"
dependencies = [ dependencies = [
"base64 0.21.7", "base64 0.21.7",
"bs58 0.4.0", "bs58",
"jsonrpc-core", "jsonrpc-core",
"reqwest", "reqwest",
"semver", "semver",
@@ -4465,7 +4455,7 @@ dependencies = [
"bincode", "bincode",
"bitflags 2.5.0", "bitflags 2.5.0",
"borsh 1.5.0", "borsh 1.5.0",
"bs58 0.4.0", "bs58",
"bytemuck", "bytemuck",
"byteorder", "byteorder",
"chrono", "chrono",
@@ -4515,7 +4505,7 @@ version = "1.18.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cb099b2f9c0a65a6f23ced791325141cd68c27b04d11c04fef838a00f613861" checksum = "5cb099b2f9c0a65a6f23ced791325141cd68c27b04d11c04fef838a00f613861"
dependencies = [ dependencies = [
"bs58 0.4.0", "bs58",
"proc-macro2", "proc-macro2",
"quote", "quote",
"rustversion", "rustversion",
@@ -4655,7 +4645,7 @@ dependencies = [
"base64 0.21.7", "base64 0.21.7",
"bincode", "bincode",
"borsh 0.10.3", "borsh 0.10.3",
"bs58 0.4.0", "bs58",
"lazy_static", "lazy_static",
"log", "log",
"serde", "serde",

View File

@@ -13,10 +13,16 @@ readme = "./README.md"
keywords = ["solana", "crypto", "mining"] keywords = ["solana", "crypto", "mining"]
[workspace.dependencies] [workspace.dependencies]
array-const-fn-init = "0.1.1"
bytemuck = "1.14.3" bytemuck = "1.14.3"
const-crypto = "0.1.0"
drillx = { git = "https://github.com/regolith-labs/drillx", branch = "master", features = ["solana"] } drillx = { git = "https://github.com/regolith-labs/drillx", branch = "master", features = ["solana"] }
mpl-token-metadata = "4.1.2" mpl-token-metadata = "4.1.2"
num_enum = "0.7.2"
shank = "0.3.0"
solana-program = "1.18" solana-program = "1.18"
spl-token = { version = "^4", features = ["no-entrypoint"] } spl-token = { version = "^4", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "^2.2", features = [ "no-entrypoint" ] } spl-associated-token-account = { version = "^2.2", features = [ "no-entrypoint" ] }
static_assertions = "1.1.0"
thiserror = "1.0.57"
utils = { path = "utils" } utils = { path = "utils" }

View File

@@ -10,17 +10,16 @@ repository.workspace = true
keywords.workspace = true keywords.workspace = true
[dependencies] [dependencies]
array-const-fn-init = "0.1.1" array-const-fn-init.workspace = true
bs58 = "0.5.0" bytemuck.workspace = true
bytemuck = "1.14.3" const-crypto.workspace = true
const-crypto = "0.1.0"
drillx.workspace = true drillx.workspace = true
mpl-token-metadata.workspace = true mpl-token-metadata.workspace = true
num_enum = "0.7.2" num_enum.workspace = true
shank = "0.3.0" shank.workspace = true
solana-program.workspace = true solana-program.workspace = true
spl-token.workspace = true spl-token.workspace = true
spl-associated-token-account.workspace = true spl-associated-token-account.workspace = true
static_assertions = "1.1.0" static_assertions.workspace = true
thiserror = "1.0.57" thiserror.workspace = true
utils.workspace = true utils.workspace = true