Compare commits

...

2 Commits

Author SHA1 Message Date
c6cc83018f Dockerfile from scratch 2023-09-24 01:32:46 +02:00
89cb0c475b 1.0.0 2023-09-23 23:51:07 +02:00
4 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@ -1504,7 +1504,7 @@ dependencies = [
[[package]]
name = "singit_srv"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"actix-files",
"actix-web",
@ -1520,7 +1520,7 @@ dependencies = [
[[package]]
name = "singit_web"
version = "0.2.2"
version = "1.0.0"
dependencies = [
"css_typegen",
"csv",

View File

@ -54,7 +54,7 @@ RUN trunk build --release
########################
### PRODUCTION STAGE ###
########################
FROM debian:stable-slim
FROM scratch
# Default logging level
ENV RUST_LOG="info"

View File

@ -1,6 +1,6 @@
[package]
name = "singit_srv"
version = "0.1.0"
version = "1.0.0"
authors = ["Joakim Hulthe <joakim@hulthe.net"]
edition = "2021"

View File

@ -1,12 +1,12 @@
[package]
name = "singit_web"
version = "0.2.2"
version = "1.0.0"
authors = ["Joakim Hulthe <joakim@hulthe.net"]
edition = "2021"
[dependencies]
seed = "0.10.0"
serde = { version = "1.0.0", features = ['derive'] }
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.0"
rand = "0.8.5"
gloo-console = "0.3.0"