Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

Commit

Permalink
chore(deps): downagrade anyhow to 1.0.59 (#722)
Browse files Browse the repository at this point in the history
See dtolnay/anyhow#250
The `backtrace` feature is unified against the various anyhow versions we use.
  • Loading branch information
huitseeker authored Aug 8, 2022
1 parent 53b6549 commit e838831
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
publish = false

[dependencies]
anyhow = { version = "1.0.60", features = ["backtrace"] }
anyhow = { version = "1.0.59", features = ["backtrace"] }
ark-bls12-377 = { version = "0.3.0", features = ["std"], optional = true }
base64ct = { version = "1.5.1", features = ["alloc"] }
ed25519-consensus = { version = "2.0.1", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
publish = false

[dependencies]
anyhow = "1.0.60"
anyhow = "1.0.59"
async-trait = "0.1.57"
backoff = { version = "0.4.0", features = ["tokio"] }
bytes = "1.2.1"
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mysten Labs <[email protected]>"]
edition = "2021"

[dependencies]
anyhow = "1.0.60"
anyhow = "1.0.59"
arc-swap = { version = "1.5.1", features = ["serde"] }
async-trait = "0.1.57"
bincode = "1.3.3"
Expand Down
2 changes: 1 addition & 1 deletion worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mysten Labs <[email protected]>"]
edition = "2021"

[dependencies]
anyhow = "1.0.60"
anyhow = "1.0.59"
async-trait = "0.1.57"
bincode = "1.3.3"
blake2 = "0.9"
Expand Down

1 comment on commit e838831

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bench results


SUMMARY:

  • CONFIG:
    Faults: 0 node(s)
    Committee size: 4 node(s)
    Worker(s) per node: 1 worker(s)
    Collocate primary and workers: True
    Input rate: 50,000 tx/s
    Transaction size: 512 B
    Execution time: 20 s

Header size: 1,000 B
Max header delay: 200 ms
GC depth: 50 round(s)
Sync retry delay: 10,000 ms
Sync retry nodes: 3 node(s)
batch size: 500,000 B
Max batch delay: 200 ms
Max concurrent requests: 500,000

  • RESULTS:
    Consensus TPS: 32,313 tx/s
    Consensus BPS: 16,544,353 B/s
    Consensus latency: 1,671 ms

End-to-end TPS: 32,170 tx/s
End-to-end BPS: 16,471,243 B/s
End-to-end latency: 2,084 ms

PR to merge e838831 ->

Please sign in to comment.