Stop using cargo internal API, too complicated. Switch to programmatically parsing metadata output. Add CI (untested, probably doesn't work), create dockerfile

This commit is contained in:
2025-06-14 19:21:05 -04:00
committed by tahahawa
parent 99e9aad687
commit 6191fd1858
6 changed files with 165 additions and 1908 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM docker.io/rust:1.87.0 AS build
WORKDIR /app
COPY . .
RUN cargo build --release --bin harmony_composer
FROM docker.io/rust:1.87.0
WORKDIR /app
COPY --from=build /app/target/release/harmony_composer .
ENTRYPOINT ["/app/harmony_composer"]