Skip to content

Commit

Permalink
Merge pull request #190 from spacemeshos/v0.7.1-candidate
Browse files Browse the repository at this point in the history
Improve service logs and release v0.7.1
  • Loading branch information
poszu authored Mar 1, 2024
2 parents 16f3941 + f18ac34 commit 5ef03b4
Show file tree
Hide file tree
Showing 13 changed files with 82 additions and 105 deletions.
103 changes: 25 additions & 78 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [

[package]
name = "post-rs"
version = "0.7.0"
version = "0.7.1"
edition = "2021"

[lib]
Expand Down Expand Up @@ -44,6 +44,7 @@ thiserror = "1.0.40"
thread_local = "1.1.7"
mockall = "0.11.4"
core_affinity = "0.8.1"
hex = "0.4.3"

[dev-dependencies]
criterion = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion certifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "certifier"
version = "0.7.0"
version = "0.7.1"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "post-cbindings"
version = "0.7.0"
version = "0.7.1"
edition = "2021"


Expand All @@ -14,7 +14,7 @@ post-rs = { path = "../" }
scrypt-ocl = { path = "../scrypt-ocl" }

[build-dependencies]
cbindgen = "*"
cbindgen = { version = "0.26.0", default-features = false }

[dev-dependencies]
tempfile = "3.6.0"
2 changes: 1 addition & 1 deletion initializer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "initializer"
version = "0.7.0"
version = "0.7.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "profiler"
version = "0.7.0"
version = "0.7.1"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion scrypt-ocl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scrypt-ocl"
version = "0.7.0"
version = "0.7.1"
edition = "2021"

[dependencies]
Expand Down
6 changes: 4 additions & 2 deletions service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "service"
version = "0.7.0"
version = "0.7.1"
edition = "2021"

[lib]
Expand All @@ -27,8 +27,10 @@ hex = "0.4.3"
mockall = "0.11.4"
sysinfo = "0.29.10"
axum = "0.7.4"
serde = "1.0.196"
serde = { version = "1.0.196", features = ["derive"] }
range-set = "0.0.11"
serde_with = { version = "3.6.1", features = ["hex"] }
serde_json = "1.0.114"

[build-dependencies]
tonic-build = "0.11.0"
Expand Down
Loading

0 comments on commit 5ef03b4

Please sign in to comment.