brainworm2024 commited on
Commit
5c8c061
·
1 Parent(s): 9d1f45a

Upgrade Rust to 1.90, remove pii, delete old lock

Browse files
Files changed (3) hide show
  1. Cargo.lock +0 -0
  2. Cargo.toml +1 -1
  3. Dockerfile +2 -2
Cargo.lock DELETED
The diff for this file is too large to render. See raw diff
 
Cargo.toml CHANGED
@@ -24,7 +24,7 @@ candle-transformers = "0.8"
24
  hf-hub = "0.3"
25
 
26
  # PII Shield
27
- pii = "0.1"
28
  regex = "1"
29
 
30
  # Web3
 
24
  hf-hub = "0.3"
25
 
26
  # PII Shield
27
+
28
  regex = "1"
29
 
30
  # Web3
Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
- # Build stage
2
- FROM rust:1.85-slim-bookworm as builder
3
  WORKDIR /app
4
  COPY Cargo.toml Cargo.lock* ./
5
  COPY src src
 
1
+ # Build stage – use a modern Rust version
2
+ FROM rust:1.90-slim-bookworm as builder
3
  WORKDIR /app
4
  COPY Cargo.toml Cargo.lock* ./
5
  COPY src src