Skip to content

Commit fba4941

Browse files
authored
fix(deps): Docker (#63)
* fix(deps): Docker * fix(deps): MSRV * fix(deps): use latest Docker image for Rust
1 parent bd0381f commit fba4941

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,22 @@ name = "ff"
33
path = "src/bin.rs"
44

55
[dependencies]
6-
crossbeam-channel = "0.5"
7-
globset = "0.4"
8-
ignore = "0.4"
6+
crossbeam-channel = "0.5.11"
7+
globset = "0.4.14"
8+
ignore = "0.4.22"
99
num_cpus = "1.16.0"
10-
regex = "1"
10+
regex = "1.10.3"
1111

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

2524
[profile.release]

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.67 AS build
1+
FROM rust:latest AS build
22
COPY . .
33
RUN rustup target add x86_64-unknown-linux-musl
44
RUN cargo install --path . --target x86_64-unknown-linux-musl

0 commit comments

Comments
 (0)