Skip to content

Commit

Permalink
Bump the cargo-all group with 4 updates (#110)
Browse files Browse the repository at this point in the history
* Bump the cargo-all group with 4 updates

Bumps the cargo-all group with 4 updates: [anyhow](https://github.com/dtolnay/anyhow), [clap](https://github.com/clap-rs/clap), [serde](https://github.com/serde-rs/serde) and [serde_json](https://github.com/serde-rs/json).


Updates `anyhow` from 1.0.86 to 1.0.87
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.86...1.0.87)

Updates `clap` from 4.5.16 to 4.5.17
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.16...clap_complete-v4.5.17)

Updates `serde` from 1.0.209 to 1.0.210
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.209...v1.0.210)

Updates `serde_json` from 1.0.127 to 1.0.128
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@1.0.127...1.0.128)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-all
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-all
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-all
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-all
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix const fn

Signed-off-by: Taiki Ono <taiki@finatext.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Taiki Ono <taiki@finatext.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Taiki Ono <taiki@finatext.com>
  • Loading branch information
dependabot[bot] and taiki45 authored Sep 10, 2024
1 parent 1837603 commit 05b434e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 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 src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub struct ConfigRoot {
}

impl ConfigRoot {
pub fn new(allowlists: Vec<Allowlist>) -> Self {
pub const fn new(allowlists: Vec<Allowlist>) -> Self {
Self {
extensions: Extensions { allowlists },
}
Expand Down

0 comments on commit 05b434e

Please sign in to comment.