Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
432 changes: 0 additions & 432 deletions impls/rust/Cargo.lock

This file was deleted.

5 changes: 2 additions & 3 deletions impls/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ version = "0.1.0"
authors = ["root"]

[dependencies]
rustyline = "13.0.0"
lazy_static = "1.4.0"
rustyline = "14.0"

regex = "1.7"
itertools = "0.10"
itertools = "0.13"
fnv = "1.0.6"


Expand Down
5 changes: 3 additions & 2 deletions impls/rust/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.04
FROM ubuntu:25.04
MAINTAINER Joel Martin <[email protected]>

##########################################################
Expand All @@ -22,7 +22,8 @@ WORKDIR /mal
RUN apt-get -y install cargo \
librust-fnv-dev \
librust-itertools-dev \
librust-lazy-static-dev \
librust-regex-dev \
librust-rustyline-dev \
rust-clippy rustfmt

ENV CARGO_HOME /mal
6 changes: 4 additions & 2 deletions impls/rust/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ all: $(STEPS)
$(STEPS): $(EXEC_DIR)/%: %.rs
cargo build --release --bin $*

$(STEPS): readline.rs
$(STEP1-2) $(STEP3) $(UPPER_STEPS): types.rs reader.rs printer.rs
$(STEP3) $(UPPER_STEPS): env.rs
$(UPPER_STEPS): core.rs
Expand All @@ -27,7 +28,8 @@ lint:
rustfmt *.rs
cargo clippy

.PHONY: clean
.PHONY: clean lint all

clean:
cargo clean
rm -fr target/
rm -f .mal-history *~ Cargo.lock
Loading