Skip to content

Commit

Permalink
chore(cargo): update dependencies (#285)
Browse files Browse the repository at this point in the history
* chore(cargo): update dependencies

* fix(debug): drop debug test
  • Loading branch information
yamafaktory authored Nov 7, 2024
1 parent b2adde7 commit c3ad7c1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
28 changes: 14 additions & 14 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [
]

[workspace.dependencies]
thiserror = "1.0.65"
thiserror = "2.0.0"
serde_json = { features = ["preserve_order", "unbounded_depth"], version = "1.0.132" }

[workspace.package]
Expand Down
4 changes: 2 additions & 2 deletions crates/jql-runner/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ pub enum JqlRunnerError {
},

/// Invalid array error.
#[error("Value {0} is not a JSON array ({})", get_json_type(.0))]
#[error("Value {} is not a JSON array ({})", .0, get_json_type(.0))]
InvalidArrayError(Value),

/// Invalid object error.
#[error("Value {0} is not a JSON object ({})", get_json_type(.0))]
#[error("Value {} is not a JSON object ({})", .0, get_json_type(.0))]
InvalidObjectError(Value),

/// Key not found error.
Expand Down
6 changes: 3 additions & 3 deletions crates/jql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ repository.workspace = true
version.workspace = true

[dependencies]
anyhow = "1.0.91"
anyhow = "1.0.93"
clap = { version = "4.5.20", features = ["derive"] }
colored_json = { version = "5.0.0" }
jql-runner = { path = "../jql-runner", version = "8.0.0" }
serde = "1.0.213"
serde = "1.0.214"
serde_stacker = "0.1.11"
serde_json.workspace = true
tokio = { version = "1.41.0", features = ["fs", "io-std", "io-util", "macros", "rt-multi-thread"] }
tokio = { version = "1.41.1", features = ["fs", "io-std", "io-util", "macros", "rt-multi-thread"] }

[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ name }-v{ version }/{ name }-v{ version }-{ target }{ archive-suffix }"

0 comments on commit c3ad7c1

Please sign in to comment.