Skip to content

Commit

Permalink
bump version to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
miralandlabs committed Aug 26, 2024
1 parent a275fa2 commit da08ff2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/bin
/target
output.log
.DS_Store
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "more-cli"
version = "2.2.0"
version = "2.2.1"
edition = "2021"
license = "Apache-2.0"
description = "A command line interface for ORE cryptocurrency mining. Tailored by Miraland Labs."
Expand All @@ -27,14 +27,14 @@ chrono = "0.4.38"
clap = { version = "4.4.12", features = ["derive"] }
color-eyre = { version = "0.6" }
colored = "2.0"
core_affinity = "0.8.1"
core_affinity = "0.8.1"
drillx = "2.1.0"
# drillx = { git = "https://github.com/regolith-labs/drillx", branch = "master", features = ["solana"] }
futures = "0.3.30"
indicatif = "0.17.8"
num_cpus = "1.16.0"
ore-api = "2.1.0"
ore-utils = "2.1.0"
ore-api = "2.1.1"
ore-utils = "2.1.1"
# ore = { package = "ore-program", git = "https://github.com/regolith-labs/ore", rev = "891565dff603891e540603d8399c233071f036af" }
# ore = { package = "ore-program", git = "https://github.com/regolith-labs/ore", branch = "hardhat/v2" }
# ore-api = { git = "https://github.com/regolith-labs/ore", rev = "ce9a701" }
Expand Down Expand Up @@ -64,14 +64,14 @@ url = "2.5"
# ore-utils = { path = "../ore/utils" }

[profile.release]
opt-level = 3 # Optimize for binary size. You can use "3" for full optimizations if binary size isn't an issue.
codegen-units = 1 # Better optimization with fewer codegen units
lto = true # Enable Link Time Optimization (LTO)
debug = false # Disable debug info to reduce binary size
panic = 'abort' # Reduces the binary size further by not including unwinding information
opt-level = 3 # Optimize for binary size. You can use "3" for full optimizations if binary size isn't an issue.
codegen-units = 1 # Better optimization with fewer codegen units
lto = true # Enable Link Time Optimization (LTO)
debug = false # Disable debug info to reduce binary size
panic = 'abort' # Reduces the binary size further by not including unwinding information
rpath = false
incremental = false
overflow-checks = false

[build]
rustflags = ["-C", "target-cpu=native"]
rustflags = ["-C", "target-cpu=native"]

0 comments on commit da08ff2

Please sign in to comment.