Skip to content

Commit

Permalink
fix(dependencies): update rust crate eyre to v0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Feb 6, 2022
1 parent 2846ccd commit d92f606
Show file tree
Hide file tree
Showing 20 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion rust/binary/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ download-tar-xz = ["download-tar", "xz2"]
async-trait = "0.1.52"
defaults = "0.2.0"
dirs = "4.0.0"
eyre = "0.6.5"
eyre = "0.6.6"
glob = "0.3.0"
once_cell = "1.9.0"
regex = "1.5.4"
Expand Down
2 changes: 1 addition & 1 deletion rust/cli-utils/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ ansi_term = "0.12.1"
async-trait = "0.1.52"
atty = { version = "0.2.14", optional = true }
color-eyre = "0.6.0"
eyre = "0.6.5"
eyre = "0.6.6"
events = { path = "../events", version = "0.0.0", optional = true }
linya = { version = "0.2.1", optional = true }
once_cell = { version = "1.9.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rust/codec/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"

[dependencies]
async-trait = "0.1.52"
eyre = "0.6.5"
eyre = "0.6.6"
serde = { version = "1.0.130", features = ["derive"] }
stencila-schema = { path = "../schema" }
tokio = { version = "1.13.0", features = ["fs", "io-util"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/events/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.0.0"
edition = "2021"

[dependencies]
eyre = "0.6.5"
eyre = "0.6.6"
once_cell = "1.9.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.75"
Expand Down
2 changes: 1 addition & 1 deletion rust/graph-triples/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
base64 = "0.13.0"
derivative = "2.2.0"
eyre = "0.6.5"
eyre = "0.6.6"
hash-utils = { path = "../hash-utils", version = "0.0.0" }
path-slash = "0.1.4"
schemars = { version = "0.8.8", features = ["preserve_order"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/graph/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
derivative = "2.2.0"
events = { path = "../events", version = "0.0.0" }
eyre = "0.6.5"
eyre = "0.6.6"
graph-triples = { path = "../graph-triples", version = "0.0.0" }
hash-utils = { path = "../hash-utils", version = "0.0.0" }
kernels = { path = "../kernels", version = "0.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion rust/hash-utils/Cargo.toml
Expand Up @@ -5,6 +5,6 @@ version = "0.0.0"
edition = "2021"

[dependencies]
eyre = "0.6.5"
eyre = "0.6.6"
sha2 = "0.10.0"

2 changes: 1 addition & 1 deletion rust/kernel/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
async-trait = "0.1.52"
chrono = { version = "0.4.19", features = ["serde"] }
eyre = "0.6.5"
eyre = "0.6.6"
formats = { path = "../formats", version = "0.0.0" }
once_cell = "1.9.0"
regex = "1.5.4"
Expand Down
2 changes: 1 addition & 1 deletion rust/node-address/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
Inflector = "0.11.4"
derive_more = "0.99.17"
eyre = "0.6.5"
eyre = "0.6.6"
schemars = "0.8.8"
serde = "1.0.130"
strum = { version = "0.23.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/node-coerce/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
codec-date = { path = "../codec-date", version = "0.0.0" }
codec-person = { path = "../codec-person", version = "0.0.0" }
codec = { path = "../codec", version = "0.0.0" }
eyre = "0.6.5"
eyre = "0.6.6"
Inflector = "0.11.4"
once_cell = "1.9.0"
regex = "1.5.4"
Expand Down
2 changes: 1 addition & 1 deletion rust/node-execute/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
async-trait = "0.1.52"
chrono = { version = "0.4.19", features = ["serde"] }
eyre = "0.6.5"
eyre = "0.6.6"
formats = { path = "../formats", version = "0.0.0" }
futures = "0.3.19"
graph = { path = "../graph", version = "0.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion rust/node-patch/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ codec-html = { path = "../codec-html", version = "0.0.0" }
codec-txt = { path = "../codec-txt", version = "0.0.0" }
defaults = "0.2.0"
derive_more = "0.99.17"
eyre = "0.6.5"
eyre = "0.6.6"
itertools = "0.10.3"
node-address = { path = "../node-address", version = "0.0.0" }
node-coerce = { path = "../node-coerce", version = "0.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion rust/node-pointer/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ version = "0.0.0"
edition = "2021"

[dependencies]
eyre = "0.6.5"
eyre = "0.6.6"
node-address = { path = "../node-address", version = "0.0.0" }
node-dispatch = { path = "../node-dispatch", version = "0.0.0" }
node-transform = { path = "../node-transform", version = "0.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion rust/node-query/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ jmespath = ["jmespatch"]
default = ["jsonptr", "jmespath"]

[dependencies]
eyre = "0.6.5"
eyre = "0.6.6"
serde_json = "1.0.75"
stencila-schema = { path = "../schema" }

Expand Down
2 changes: 1 addition & 1 deletion rust/node-reshape/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ codec-date = { path = "../codec-date", version = "0.0.0" }
codec-person = { path = "../codec-person", version = "0.0.0" }
codec-txt = { path = "../codec-txt", version = "0.0.0" }
defaults = "0.2.0"
eyre = "0.6.5"
eyre = "0.6.6"
once_cell = "1.9.0"
regex = "1.5.4"
stencila-schema = { path = "../schema" }
Expand Down
2 changes: 1 addition & 1 deletion rust/parser/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ version = "0.0.0"
edition = "2021"

[dependencies]
eyre = "0.6.5"
eyre = "0.6.6"
formats = { path = "../formats", version = "0.0.0" }
graph-triples = { path = "../graph-triples", version = "0.0.0" }
once_cell = "1.9.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/plugins/Cargo.toml
Expand Up @@ -20,7 +20,7 @@ r = []

chrono = "0.4.19"
events = { path = "../events", version = "0.0.0" }
eyre = "0.6.5"
eyre = "0.6.6"
futures = "0.3.19"
humantime = "2.1.0"
jsonschema = "0.13.2"
Expand Down
2 changes: 1 addition & 1 deletion rust/stencila/Cargo.toml
Expand Up @@ -109,7 +109,7 @@ derivative = "=2.2.0"
derive_more = "=0.99.17"
dirs-next = "=2.0.0"
enum_dispatch = "=0.3.7"
eyre = "=0.6.5"
eyre = "=0.6.6"
futures = "=0.3.19"
gitignore = "=1.0.7"
glob = "=0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/uuids/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ version = "0.0.0"
edition = "2021"

[dependencies]
eyre = "0.6.5"
eyre = "0.6.6"
nanoid = "0.4.0"
regex = "1.5.4"
serde = { version = "1.0.130", features = ["derive"] }
Expand Down

0 comments on commit d92f606

Please sign in to comment.