diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index c030365384..7fb7a3053b 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -1,8 +1,10 @@ name: Code Coverage Report on: workflow_dispatch: - schedule: - - cron: '0 17 * * *' + pull_request: + push: + branches: + - master jobs: code_coverage_report: name: Generate code coverage report diff --git a/Cargo.lock b/Cargo.lock index c3f4591c2b..6b5a2023de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -302,9 +302,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68803225a7b13e47191bab76f2687382b60d259e8cf37f6e1893658b84bb9479" +checksum = "ee67c11feeac938fae061b232e38e0b6d94f97a9df10e6271319325ac4c56a86" [[package]] name = "api-limiter" @@ -2702,9 +2702,9 @@ checksum = "d36fab90f82edc3c747f9d438e06cf0a491055896f2a279638bb5beed6c40177" [[package]] name = "handlebars" -version = "3.5.1" +version = "3.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2764f9796c0ddca4b82c07f25dd2cb3db30b9a8f47940e78e1c883d9e95c3db9" +checksum = "964d0e99a61fe9b1b347389b77ebf8b7e1587b70293676aaca7d27e59b9073b2" dependencies = [ "log 0.4.11", "pest 2.1.3", diff --git a/account/api/Cargo.toml b/account/api/Cargo.toml index 4d65ac3bdb..1b875eda0c 100644 --- a/account/api/Cargo.toml +++ b/account/api/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" async-trait = "0.1" serde = { version = "1.0", default-features = false } diff --git a/account/lib/Cargo.toml b/account/lib/Cargo.toml index 0b6d0d9f9c..14785178eb 100644 --- a/account/lib/Cargo.toml +++ b/account/lib/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] dashmap = "4.0" -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" async-trait = "0.1" rand = "0.7.3" diff --git a/account/service/Cargo.toml b/account/service/Cargo.toml index 11827b0b28..f8271d0209 100644 --- a/account/service/Cargo.toml +++ b/account/service/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" async-trait = "0.1" bstr = "0.2" diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 3555b442c0..6051e5e48b 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" criterion = "0.3.1" proptest = "0.10.1" futures-timer = "3.0" diff --git a/block-relayer/Cargo.toml b/block-relayer/Cargo.toml index d0737a3354..0dfac9bb64 100644 --- a/block-relayer/Cargo.toml +++ b/block-relayer/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" actix = "0.10.0" futures = "0.3" config = {path = "../config", package="starcoin-config"} diff --git a/chain/Cargo.toml b/chain/Cargo.toml index d233da3ac9..16cc0aa31b 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" starcoin-types = { path = "../types", package = "starcoin-types" } starcoin-config = { path = "../config" } diff --git a/chain/api/Cargo.toml b/chain/api/Cargo.toml index bda2fbc732..5f58c9284d 100644 --- a/chain/api/Cargo.toml +++ b/chain/api/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" async-trait = "0.1" serde = { version = "1.0", default-features = false } diff --git a/chain/chain-notify/Cargo.toml b/chain/chain-notify/Cargo.toml index 5e4f7937f2..4f0cc8e078 100644 --- a/chain/chain-notify/Cargo.toml +++ b/chain/chain-notify/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" actix = "0.10.0" starcoin-types = {path = "../../types" } starcoin-crypto = {path = "../../commons/crypto"} diff --git a/chain/mock/Cargo.toml b/chain/mock/Cargo.toml index f5193d8829..7181e5ae5b 100644 --- a/chain/mock/Cargo.toml +++ b/chain/mock/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" actix = "0.10.0" actix-rt = "1.1" diff --git a/chain/open-block/Cargo.toml b/chain/open-block/Cargo.toml index 46f15b95e9..a71e6f5c53 100644 --- a/chain/open-block/Cargo.toml +++ b/chain/open-block/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" starcoin-types = {path = "../../types"} starcoin-executor = {path = "../../executor", package="starcoin-executor"} crypto = { package="starcoin-crypto", path = "../../commons/crypto"} diff --git a/chain/service/Cargo.toml b/chain/service/Cargo.toml index 9b3d9741cd..9c7dc01c23 100644 --- a/chain/service/Cargo.toml +++ b/chain/service/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" async-trait = "0.1" serde = { version = "1.0", default-features = false } diff --git a/cmd/faucet/Cargo.toml b/cmd/faucet/Cargo.toml index ed3333d217..d0dcd8626e 100644 --- a/cmd/faucet/Cargo.toml +++ b/cmd/faucet/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" tiny_http = "0.6" futures = { version = "0.3"} hex = { version = "0.4.2", default-features = false } diff --git a/cmd/generator/Cargo.toml b/cmd/generator/Cargo.toml index 175464d428..29efe929b5 100644 --- a/cmd/generator/Cargo.toml +++ b/cmd/generator/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" serde = { version = "1.0" } serde_json = { version = "1.0", features = ["arbitrary_precision"] } futures = { version = "0.3" } diff --git a/cmd/miner_client/Cargo.toml b/cmd/miner_client/Cargo.toml index be198bca6d..5ad5d176cf 100644 --- a/cmd/miner_client/Cargo.toml +++ b/cmd/miner_client/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Starcoin Core Dev "] edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" actix = "0.10.0" actix-rt = "1.1" async-std = "1.8" diff --git a/cmd/starcoin/Cargo.toml b/cmd/starcoin/Cargo.toml index 1162656659..06b808834c 100644 --- a/cmd/starcoin/Cargo.toml +++ b/cmd/starcoin/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" rand = "0.7.3" serde = { version = "1.0" } serde_json = { version="1.0", features = ["arbitrary_precision"]} diff --git a/cmd/tx-factory/Cargo.toml b/cmd/tx-factory/Cargo.toml index 88bf861419..df9b20d5a7 100644 --- a/cmd/tx-factory/Cargo.toml +++ b/cmd/tx-factory/Cargo.toml @@ -11,7 +11,7 @@ name = "starcoin_txfactory" path = "src/main.rs" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" structopt = "0.3.21" ctrlc = { version = "3.1", features = ["termination"] } futures = { version = "0.3"} diff --git a/commons/decrypt/Cargo.toml b/commons/decrypt/Cargo.toml index 823bdbcdcb..d159808f96 100644 --- a/commons/decrypt/Cargo.toml +++ b/commons/decrypt/Cargo.toml @@ -13,4 +13,4 @@ aes-gcm = "0.5" rand = "0.7.3" rand_core = { version = "0.6.0", default-features = false } byteorder="1.3" -anyhow= "1.0.36" +anyhow= "1.0.37" diff --git a/commons/logger/Cargo.toml b/commons/logger/Cargo.toml index da3d08cf57..8f9817606d 100644 --- a/commons/logger/Cargo.toml +++ b/commons/logger/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" log = "0.4.11" chrono = "0.4.19" log4rs = { version="1.0.0", features = ["background_rotation", "gzip"]} diff --git a/commons/metrics/Cargo.toml b/commons/metrics/Cargo.toml index 5c12f506dd..ff69dd4252 100644 --- a/commons/metrics/Cargo.toml +++ b/commons/metrics/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" description = "Starcoin metrics" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" hyper = "0.13.9" starcoin-logger = { path = "../logger" } diff --git a/commons/scmd/Cargo.toml b/commons/scmd/Cargo.toml index 35122ff72c..fb02c2ec1c 100644 --- a/commons/scmd/Cargo.toml +++ b/commons/scmd/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" serde = { version = "1.0", features = ["derive"] } rustyline = "7.1.0" diff --git a/commons/scs/Cargo.toml b/commons/scs/Cargo.toml index e373ee9a18..df63630f59 100644 --- a/commons/scs/Cargo.toml +++ b/commons/scs/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" serde = { version = "1.0" } lcs = { package="libra-canonical-serialization", git = "https://github.com/starcoinorg/libra", rev="bf037026b5842354a2892e0b58f527e80658ace5"} diff --git a/commons/stest/Cargo.toml b/commons/stest/Cargo.toml index 03b374e28f..32ac6935e9 100644 --- a/commons/stest/Cargo.toml +++ b/commons/stest/Cargo.toml @@ -15,5 +15,5 @@ actix = "0.10.0" actix-rt = "1.1" futures = "0.3" tokio = { version = "0.2", features = ["full"] } -anyhow = "1.0.36" +anyhow = "1.0.37" diff --git a/commons/stream-task/Cargo.toml b/commons/stream-task/Cargo.toml index 0e0555de7e..c80f01b9f3 100644 --- a/commons/stream-task/Cargo.toml +++ b/commons/stream-task/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Starcoin Core Dev "] edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" rand = "0.7.3" pin-utils = "0.1.0" diff --git a/commons/timeout-join-handler/Cargo.toml b/commons/timeout-join-handler/Cargo.toml index bbf6557f01..0c4c587130 100644 --- a/commons/timeout-join-handler/Cargo.toml +++ b/commons/timeout-join-handler/Cargo.toml @@ -7,5 +7,5 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" diff --git a/config/Cargo.toml b/config/Cargo.toml index 2726099359..852c7396eb 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] dirs = "3" -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", features = ["arbitrary_precision"] } diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index b345867228..8792c6228c 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" futures = { version = "0.3" } once_cell = "1.5.2" diff --git a/core/accumulator/Cargo.toml b/core/accumulator/Cargo.toml index 563d96a22a..a1ba05100f 100644 --- a/core/accumulator/Cargo.toml +++ b/core/accumulator/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" once_cell = "1.5.2" mirai-annotations = "1.10.1" byteorder = "1.3.2" diff --git a/core/forkable-jellyfish-merkle/Cargo.toml b/core/forkable-jellyfish-merkle/Cargo.toml index d0cb7f69a6..8955f8617e 100644 --- a/core/forkable-jellyfish-merkle/Cargo.toml +++ b/core/forkable-jellyfish-merkle/Cargo.toml @@ -8,7 +8,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" bincode = "1.1.1" byteorder = "1.3.2" mirai-annotations = "1.10.1" diff --git a/core/genesis/Cargo.toml b/core/genesis/Cargo.toml index 73cc9485bc..2c2f91d343 100644 --- a/core/genesis/Cargo.toml +++ b/core/genesis/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" structopt = "0.3.21" once_cell = "1.5.2" diff --git a/core/traits/Cargo.toml b/core/traits/Cargo.toml index 58e160a523..5628ba265b 100644 --- a/core/traits/Cargo.toml +++ b/core/traits/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" async-trait = "0.1" starcoin-types = { path = "../../types"} starcoin-crypto = { path = "../../commons/crypto"} diff --git a/devtools/x/Cargo.toml b/devtools/x/Cargo.toml index da90a9f27b..0c9d800e0d 100644 --- a/devtools/x/Cargo.toml +++ b/devtools/x/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" serde = { version = "1.0.117", features = ["derive"] } serde_json = "1.0.59" structopt = "0.3.21" -anyhow = "1.0.36" +anyhow = "1.0.37" colored-diff = "0.2.2" guppy = { version = "0.5.0", features = ["summaries"] } indoc = "1.0.3" diff --git a/executor/Cargo.toml b/executor/Cargo.toml index 53e83914b4..9914813075 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" once_cell = "1.5.2" starcoin-types = {path = "../types"} starcoin-config = { path = "../config"} diff --git a/executor/benchmark/Cargo.toml b/executor/benchmark/Cargo.toml index 37de10e907..914ddc9787 100644 --- a/executor/benchmark/Cargo.toml +++ b/executor/benchmark/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" itertools = { version = "0.10.0", default-features = false } rand = "0.7.3" rayon = "1" diff --git a/kube/manifest/runner.yaml b/kube/manifest/runner.yaml index db8a68265a..2168067e8a 100644 --- a/kube/manifest/runner.yaml +++ b/kube/manifest/runner.yaml @@ -12,8 +12,8 @@ spec: resources: requests: - cpu: "1" - memory: "1Gi" + cpu: "24.0" + memory: "48Gi" # If set to false, there are no privileged container and you cannot use docker. dockerEnabled: true # If set to true, runner pod container only 1 container that's expected to be able to run docker, too. @@ -34,7 +34,7 @@ spec: scaleTargetRef: name: starcoin-runner-deployment minReplicas: 1 - maxReplicas: 5 + maxReplicas: 6 scaleDownDelaySecondsAfterScaleOut: 300 metrics: - type: TotalNumberOfQueuedAndInProgressWorkflowRuns diff --git a/kube/manifest/starcoin.yaml b/kube/manifest/starcoin.yaml index 1cbc6c3f10..4d614bad96 100644 --- a/kube/manifest/starcoin.yaml +++ b/kube/manifest/starcoin.yaml @@ -36,7 +36,7 @@ spec: spec: containers: - name: starcoin - image: starcoin/starcoin:v0.9.2 + image: starcoin/starcoin:v0.9.3 imagePullPolicy: Always command: - bash diff --git a/miner/Cargo.toml b/miner/Cargo.toml index 3a61f8bb75..026d2701fd 100644 --- a/miner/Cargo.toml +++ b/miner/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Starcoin Core Dev "] edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" actix = "0.10.0" actix-rt = "1.1" futures = { version = "0.3" } diff --git a/network-p2p/Cargo.toml b/network-p2p/Cargo.toml index 3bc6709b87..cb673338f5 100644 --- a/network-p2p/Cargo.toml +++ b/network-p2p/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" bitflags = "1.2.0" bytes = "0.5.0" once_cell = "1.5.2" diff --git a/network-p2p/types/Cargo.toml b/network-p2p/types/Cargo.toml index 67ebd96a37..04e2329a8a 100644 --- a/network-p2p/types/Cargo.toml +++ b/network-p2p/types/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" bitflags = "1.2.0" bytes = "0.5.0" derive_more = "0.99.11" diff --git a/network-rpc/Cargo.toml b/network-rpc/Cargo.toml index 4fab1bb9cd..48b7b5d2f9 100644 --- a/network-rpc/Cargo.toml +++ b/network-rpc/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" actix = "0.10.0" actix-rt = "1.1" diff --git a/network-rpc/api/Cargo.toml b/network-rpc/api/Cargo.toml index f2717b4041..9ea626ec1a 100644 --- a/network-rpc/api/Cargo.toml +++ b/network-rpc/api/Cargo.toml @@ -22,5 +22,5 @@ scs = { path = "../../commons/scs", package = "starcoin-canonical-serialization" starcoin-logger = {path = "../../commons/logger"} serde = { version = "1.0", features = ["derive"] } actix = "0.10.0" -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" diff --git a/network-rpc/core/Cargo.toml b/network-rpc/core/Cargo.toml index 657e5f4184..68e809c2aa 100644 --- a/network-rpc/core/Cargo.toml +++ b/network-rpc/core/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" serde = { version = "1.0", features = ["derive"] } log = "0.4.11" diff --git a/network-rpc/derive/Cargo.toml b/network-rpc/derive/Cargo.toml index 03ba51739a..76de8df6ac 100644 --- a/network-rpc/derive/Cargo.toml +++ b/network-rpc/derive/Cargo.toml @@ -16,7 +16,7 @@ quote = "1.0.8" proc-macro-crate = "0.1.4" futures = "0.3" -anyhow = "1.0.36" +anyhow = "1.0.37" serde = { version = "1.0", features = ["derive"] } starcoin-types = {path = "../../types"} diff --git a/network/Cargo.toml b/network/Cargo.toml index d355aa55f0..2c5465f172 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" actix = "0.10.0" diff --git a/network/api/Cargo.toml b/network/api/Cargo.toml index 819ab5d637..3d0a229dd2 100644 --- a/network/api/Cargo.toml +++ b/network/api/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] hex= "0.4.2" -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" serde = { version = "1.0", default-features = false } rand = "0.7.3" diff --git a/node/Cargo.toml b/node/Cargo.toml index 74b630e00d..bcfd4bfd1c 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" backtrace = "0.3.55" actix = "0.10.0" diff --git a/node/api/Cargo.toml b/node/api/Cargo.toml index 4df86394dd..08001584e3 100644 --- a/node/api/Cargo.toml +++ b/node/api/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" backtrace = "0.3.55" futures = "0.3" diff --git a/rpc/api/Cargo.toml b/rpc/api/Cargo.toml index 8ee154a7c0..9ce69796d9 100644 --- a/rpc/api/Cargo.toml +++ b/rpc/api/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = { version="1.0", features = ["arbitrary_precision"]} diff --git a/rpc/client/Cargo.toml b/rpc/client/Cargo.toml index 626110ad32..7109ef90b9 100644 --- a/rpc/client/Cargo.toml +++ b/rpc/client/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" # for RpcError convert. failure = "0.1" diff --git a/rpc/middleware/Cargo.toml b/rpc/middleware/Cargo.toml index 83d4523aa4..7f76134960 100644 --- a/rpc/middleware/Cargo.toml +++ b/rpc/middleware/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" # for RpcError convert. failure = "0.1" diff --git a/rpc/server/Cargo.toml b/rpc/server/Cargo.toml index 0a94d839b7..b2416dbd18 100644 --- a/rpc/server/Cargo.toml +++ b/rpc/server/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" log = "0.4" parking_lot = "0.11" futures-channel = "0.3" -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" failure = "0.1" dashmap = "4.0" diff --git a/state/api/Cargo.toml b/state/api/Cargo.toml index cb0d8bda47..689bec3d60 100644 --- a/state/api/Cargo.toml +++ b/state/api/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" async-trait = "0.1" serde = { version = "1.0", features = ["derive"] } starcoin-crypto = {path = "../../commons/crypto"} diff --git a/state/service/Cargo.toml b/state/service/Cargo.toml index 20c461375a..17b4205be4 100644 --- a/state/service/Cargo.toml +++ b/state/service/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" futures = "0.3" async-trait = "0.1" starcoin-logger = { path = "../../commons/logger" } diff --git a/state/state-store-api/Cargo.toml b/state/state-store-api/Cargo.toml index 303bd43ed2..1ec87e95b3 100644 --- a/state/state-store-api/Cargo.toml +++ b/state/state-store-api/Cargo.toml @@ -11,4 +11,4 @@ edition = "2018" forkable-jellyfish-merkle = { path = "../../core/forkable-jellyfish-merkle"} starcoin-crypto = { path = "../../commons/crypto"} serde = { version = "1.0" } -anyhow = "1.0.36" +anyhow = "1.0.37" diff --git a/state/state-tree/Cargo.toml b/state/state-tree/Cargo.toml index 06f5452b01..dc63c4e7c6 100644 --- a/state/state-tree/Cargo.toml +++ b/state/state-tree/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" starcoin-types = {path = "../../types"} starcoin-crypto = { path = "../../commons/crypto"} serde = { version = "1.0" } diff --git a/state/statedb/Cargo.toml b/state/statedb/Cargo.toml index e0e92d17ea..1c47327c30 100644 --- a/state/statedb/Cargo.toml +++ b/state/statedb/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" actix-rt = "1.1" parking_lot = "0.11.1" diff --git a/storage/Cargo.toml b/storage/Cargo.toml index 27b26b1d3d..b56efccab2 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" serde = { version = "1.0" } starcoin-types = {path = "../types"} diff --git a/sync/Cargo.toml b/sync/Cargo.toml index 47f03856fb..162470c2ca 100644 --- a/sync/Cargo.toml +++ b/sync/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Starcoin Core Dev "] edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" actix = "0.10.0" rand = "0.7.3" diff --git a/sync/api/Cargo.toml b/sync/api/Cargo.toml index a6fbdde903..ed2e5a32db 100644 --- a/sync/api/Cargo.toml +++ b/sync/api/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Starcoin Core Dev "] edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" actix = "0.10.0" actix-rt = "1.1" starcoin-types = {path = "../../types", package="starcoin-types"} diff --git a/test-helper/Cargo.toml b/test-helper/Cargo.toml index b946bf9e0c..b7f59ed0d9 100644 --- a/test-helper/Cargo.toml +++ b/test-helper/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" backtrace = "0.3.55" actix = "0.10.0" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 65bc459e0b..8b2cd6521b 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" actix = "0.10.0" actix-rt = "1.1" lazy_static = "1.4.0" diff --git a/txpool/Cargo.toml b/txpool/Cargo.toml index da26daff11..126a9a1fbc 100644 --- a/txpool/Cargo.toml +++ b/txpool/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" actix = "0.10.0" actix-rt = "1.1" async-trait = "0.1" diff --git a/txpool/api/Cargo.toml b/txpool/api/Cargo.toml index 7181e18909..fd7ef0e2d6 100644 --- a/txpool/api/Cargo.toml +++ b/txpool/api/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" async-trait = "0.1" futures-channel = "0.3" starcoin-types = {path = "../../types", package="starcoin-types"} diff --git a/txpool/mock-service/Cargo.toml b/txpool/mock-service/Cargo.toml index 967098d506..8483a68600 100644 --- a/txpool/mock-service/Cargo.toml +++ b/txpool/mock-service/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" async-trait = "0.1" types = {path = "../../types", package="starcoin-types"} crypto = { package="starcoin-crypto", path = "../../commons/crypto"} diff --git a/types/Cargo.toml b/types/Cargo.toml index 284ad1071b..0a8583a7c7 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" byteorder = { version = "1.3.2", default-features = false } bytes = "0.5" hex = { version = "0.4.2", default-features = false } diff --git a/vm/compiler/Cargo.toml b/vm/compiler/Cargo.toml index 66c3a87b2d..f837a463bf 100644 --- a/vm/compiler/Cargo.toml +++ b/vm/compiler/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" once_cell = "1.5.2" tempfile = "3.1.0" regex = { version = "1.4.2", default-features = false, features = ["std", "perf"] } diff --git a/vm/dev/Cargo.toml b/vm/dev/Cargo.toml index a931f82583..ad71626997 100644 --- a/vm/dev/Cargo.toml +++ b/vm/dev/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" thiserror = "1.0" starcoin-crypto = { path = "../../commons/crypto"} starcoin-vm-types = { path = "../types" } diff --git a/vm/functional-tests/Cargo.toml b/vm/functional-tests/Cargo.toml index aeca977f5f..1fc64472d9 100644 --- a/vm/functional-tests/Cargo.toml +++ b/vm/functional-tests/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" tempfile = "3.1.0" datatest-stable = {git = "https://github.com/starcoinorg/libra", rev="bf037026b5842354a2892e0b58f527e80658ace5" } stdlib = { package="stdlib", path = "../stdlib"} diff --git a/vm/move-coverage/Cargo.toml b/vm/move-coverage/Cargo.toml index 5292a464c9..4c7a3a5730 100644 --- a/vm/move-coverage/Cargo.toml +++ b/vm/move-coverage/Cargo.toml @@ -12,7 +12,7 @@ once_cell = "1.5.2" petgraph = "0.5.1" structopt = "0.3.21" serde = { version = "1.0.117", default-features = false } -anyhow = "1.0.36" +anyhow = "1.0.37" codespan = { version = "0.8.0", features = ["serialization"] } colored = "2.0.0" scs = { package="starcoin-canonical-serialization", path = "../../commons/scs"} diff --git a/vm/move-prover/Cargo.toml b/vm/move-prover/Cargo.toml index 8cf86a8d10..6e9db25189 100644 --- a/vm/move-prover/Cargo.toml +++ b/vm/move-prover/Cargo.toml @@ -22,12 +22,12 @@ abigen = { git = "https://github.com/starcoinorg/libra", rev="bf037026b5842354a2 # external dependencies async-trait = "0.1.42" -anyhow = "1.0.36" +anyhow = "1.0.37" clap = "2.33.3" codespan = "0.8.0" codespan-reporting = "0.8.0" futures = "0.3.8" -handlebars = "3.5.1" +handlebars = "3.5.2" hex = "0.4.2" itertools = "0.10.0" log = "0.4.11" diff --git a/vm/resource-viewer/Cargo.toml b/vm/resource-viewer/Cargo.toml index efcc5f5304..54f13655ba 100644 --- a/vm/resource-viewer/Cargo.toml +++ b/vm/resource-viewer/Cargo.toml @@ -10,6 +10,6 @@ edition = "2018" starcoin-vm-types = { path = "../types" } serde_json = "1.0" serde = { version = "1.0", features = ["derive", "rc"] } -anyhow = "1.0.36" +anyhow = "1.0.37" once_cell = "1.5.2" hex = "0.4.2" diff --git a/vm/stdlib/Cargo.toml b/vm/stdlib/Cargo.toml index 204226b990..1f919a4c8a 100644 --- a/vm/stdlib/Cargo.toml +++ b/vm/stdlib/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" bytecode-verifier = { package="bytecode-verifier", git = "https://github.com/starcoinorg/libra", version = "0.1.0",rev="bf037026b5842354a2892e0b58f527e80658ace5" } datatest-stable = { package="datatest-stable", git = "https://github.com/starcoinorg/libra", rev="bf037026b5842354a2892e0b58f527e80658ace5" } starcoin-crypto = { path = "../../commons/crypto"} diff --git a/vm/transaction-builder-generator/Cargo.toml b/vm/transaction-builder-generator/Cargo.toml index ddcb1b9904..97d6f271ac 100644 --- a/vm/transaction-builder-generator/Cargo.toml +++ b/vm/transaction-builder-generator/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" structopt = "0.3.21" textwrap = "0.13.1" serde_yaml = "0.8.14" diff --git a/vm/transaction-builder/Cargo.toml b/vm/transaction-builder/Cargo.toml index 717f1d8e7e..5ef2657bd2 100644 --- a/vm/transaction-builder/Cargo.toml +++ b/vm/transaction-builder/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" starcoin-config = { path = "../../config"} stdlib = { package="stdlib", path = "../stdlib"} starcoin-vm-types = { path = "../types"} diff --git a/vm/types/Cargo.toml b/vm/types/Cargo.toml index 52b7b17c45..67c06b4347 100644 --- a/vm/types/Cargo.toml +++ b/vm/types/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" once_cell = "1.5.2" rand = "0.7.3" serde = { version = "1.0", default-features = false } diff --git a/vm/vm-runtime/Cargo.toml b/vm/vm-runtime/Cargo.toml index 780bb2c6e9..43947dda91 100644 --- a/vm/vm-runtime/Cargo.toml +++ b/vm/vm-runtime/Cargo.toml @@ -7,7 +7,7 @@ publish = false edition = "2018" [dependencies] -anyhow = "1.0.36" +anyhow = "1.0.37" once_cell = "1.5.2" prometheus = "0.10" starcoin-types = { path = "../../types"}