Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.
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
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ SUBSCRIPTIONS__DATABASE__NAME=db
SUBSCRIPTIONS__EMAIL_CLIENT__SENDER_EMAIL=
SUBSCRIPTIONS__EMAIL_CLIENT__BASE_URL=
SUBSCRIPTIONS__EMAIL_CLIENT__AUTH_TOKEN=
SUBSCRIPTIONS__EMAIL_CLIENT__TIMEOUT=2s

# surrealdb-migrations CLI
SURREAL_MIG_ADDRESS=ws://localhost:4000
Expand Down
2 changes: 1 addition & 1 deletion .moon/toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yaml-language-server: $schema=https://moonrepo.dev/schemas/toolchain.json

rust:
unstable_rust:
version: 1.89.0
syncToolchainConfig: true
binstallVersion: 1.14.4
Expand Down
4 changes: 2 additions & 2 deletions .prototools
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
moon = "1.39.4"
proto = "0.51.6"
moon = "1.40.0"
proto = "0.52.3"

[settings]
auto-install = true
204 changes: 4 additions & 200 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ codegen-units = 1
axum = { version = "0.8.4", features = ["tracing"] }
config = "0.15.15"
dotenvy = "0.15.7"
reqwest = { version = "0.12.23", features = ["json", "rustls-tls"] }
reqwest = { version = "0.12.23", default-features = false, features = ["json", "rustls-tls"] }
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive"] }
serde-humantime = "0.1.1"
Expand Down
Loading