Skip to content

Commit

Permalink
fix(deps): Docker (#63)
Browse files Browse the repository at this point in the history
* fix(deps): Docker

* fix(deps): MSRV

* fix(deps): use latest Docker image for Rust
  • Loading branch information
jeertmans authored Feb 6, 2024
1 parent bd0381f commit fba4941
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,22 @@ name = "ff"
path = "src/bin.rs"

[dependencies]
crossbeam-channel = "0.5"
globset = "0.4"
ignore = "0.4"
crossbeam-channel = "0.5.11"
globset = "0.4.14"
ignore = "0.4.22"
num_cpus = "1.16.0"
regex = "1"
regex = "1.10.3"

[package]
authors = ["Jérome Eertmans <[email protected]>"]
description = "Find files within current directory that match given patterns, while respecting gitignore rules."
edition = "2021"
include = ["src/bin.rs", "LICENSE.md", "README.md", "CHANGELOG.md"]
keywords = ["find", "files", "gitignore"]
license = "MIT"
name = "filesfinder"
readme = "README.md"
repository = "https://github.com/jeertmans/filesfinder"
rust-version = "1.63.0"
rust-version = "1.70.0"
version = "0.4.13"

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.67 AS build
FROM rust:latest AS build
COPY . .
RUN rustup target add x86_64-unknown-linux-musl
RUN cargo install --path . --target x86_64-unknown-linux-musl
Expand Down

0 comments on commit fba4941

Please sign in to comment.