Skip to content

Commit

Permalink
bump rust
Browse files Browse the repository at this point in the history
  • Loading branch information
nbittich committed Sep 16, 2024
1 parent 63a7426 commit 4e1d424
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ description = "namespaces aliases for command lines & basic scripting language"
homepage = "https://github.com/nbittich/adana"
repository = "https://github.com/nbittich/adana"
readme = "README.md"
rust-version = "1.80"
rust-version = "1.81"
edition = "2021"
license = "MIT"
exclude = ["vscode/", "dist/", ".vscode", ".history", ".git", ".github"]

[workspace.dependencies]

anyhow = "1.0.86"
anyhow = "1.0.89"
bincode = "1.3.3"
dirs = "5.0.1" # todo maybe replace by the home crate
log = "0.4.22"
Expand All @@ -32,8 +32,8 @@ libloading = "0.8.5"
nu-ansi-term = "0.50.1"
rustyline = "14.0.0"
rustyline-derive = "0.10.0"
serde = { version = "1.0.209", features = ['serde_derive', 'rc'] }
serde_json = "1.0.127"
serde = { version = "1.0.210", features = ['serde_derive', 'rc'] }
serde_json = "1.0.128"
slab_tree = "0.3.2"
strum = { version = "0.26.3", features = ["derive"] }
ctrlc = "3.4.5"
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.80-bookworm as builder
FROM rust:1.81-bookworm as builder

WORKDIR /app

Expand All @@ -10,7 +10,7 @@ COPY . .

RUN cargo build --release

FROM rust:1.80-slim-bookworm
FROM rust:1.81-slim-bookworm

ENV RUST_LOG=info

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.80"
channel = "1.81"

0 comments on commit 4e1d424

Please sign in to comment.