4 Commits

3 changed files with 9 additions and 2 deletions

View File

@@ -14,3 +14,8 @@ auto_link_exclude_list = [
"libdl.so*",
"libpthread.so*",
]
[[bin]] # fix for cargo appimage not finding the binary
name = "adwaita-demo" # crate name
path = "src/main.rs"

View File

@@ -1,6 +1,7 @@
FROM fedora:latest
ARG RUST_VERSION=1.72.1
ENV RUST_VERSION=$RUST_VERSION
ENV RUST_VERSION=1.61.0
RUN dnf install gtk4-devel gcc libadwaita-devel -y
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

View File

@@ -1,5 +1,6 @@
FROM fedora:latest
ENV RUST_VERSION=1.61.0
ARG RUST_VERSION=1.72.1
ENV RUST_VERSION=$RUST_VERSION
RUN dnf install gtk4-devel gcc libadwaita-devel -y