Compare commits

..
3 Commits
Author SHA1 Message Date
cupcakearmy cc2c45221b Merge pull request #219 from cupcakearmy/v3
v3
2026-09-21 21:08:14 +02:00
cupcakearmy b113d253a9 chore: bump to 3.0.0 2026-09-21 20:51:51 +02:00
cupcakearmy c99c62cf00 chore: clean up compose file 2026-09-21 20:50:48 +02:00
4 changed files with 13 additions and 15 deletions
+10 -12
View File
@@ -1,17 +1,17 @@
services: services:
cache: cache:
image: valkey/valkey:7-alpine image: valkey/valkey:9-alpine
# This is required to stay in RAM only. # This is required to stay in RAM only.
command: valkey-server --save "" --appendonly no command: valkey-server --save "" --appendonly no
# Set a size limit. See link below on how to customise. # Set a size limit. See link below on how to customise.
# https://valkey.io/docs/latest/operate/rs/databases/memory-performance/eviction-policy/ # https://valkey.io/topics/lru-cache/
# --maxmemory 1gb --maxmemory-policy allkeys-lrulpine # --maxmemory 1gb --maxmemory-policy allkeys-lru
# This prevents the creation of an anonymous volume. # This prevents the creation of an anonymous volume.
tmpfs: tmpfs:
- /data - /data
app: app:
image: cupcakearmy/cryptgeon:v3 image: cupcakearmy/cryptgeon:3
depends_on: depends_on:
- cache - cache
environment: environment:
@@ -19,11 +19,9 @@ services:
SIZE_LIMIT: 4 MiB SIZE_LIMIT: 4 MiB
ports: ports:
- 80:8000 - 80:8000
healthcheck:
# Optional health checks test: ["CMD", "curl", "--fail", "http://127.0.0.1:8000/healthz"]
# healthcheck: interval: 1m
# test: ["CMD", "curl", "--fail", "http://127.0.0.1:8000/healthz"] timeout: 3s
# interval: 1m retries: 2
# timeout: 3s start_period: 5s
# retries: 2
# start_period: 5s
+1 -1
View File
@@ -252,7 +252,7 @@ dependencies = [
[[package]] [[package]]
name = "cryptgeon" name = "cryptgeon"
version = "3.0.0-rc.4" version = "3.0.0"
dependencies = [ dependencies = [
"axum", "axum",
"bs62", "bs62",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "cryptgeon" name = "cryptgeon"
version = "3.0.0-rc.4" version = "3.0.0"
authors = ["cupcakearmy <hi@nicco.io>"] authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2024" edition = "2024"
rust-version = "1.95" rust-version = "1.95"
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "cryptgeon", "name": "cryptgeon",
"version": "3.0.0-rc.4", "version": "3.0.0",
"homepage": "https://github.com/cupcakearmy/cryptgeon", "homepage": "https://github.com/cupcakearmy/cryptgeon",
"repository": { "repository": {
"type": "git", "type": "git",