Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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 .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[env]
RUSTY_V8_MIRROR = "https://github.com/supabase/rusty_v8/releases/download"
# https://supabase.com/docs/guides/functions/limits
SUPABASE_RESOURCE_LIMIT_MEM_MB = "256"
SUPABASE_RESOURCE_LIMIT_LOW_MEM_MULTIPLIER = "5"
Expand Down
3 changes: 2 additions & 1 deletion .dprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
".git",
"target",
"crates/base/test_cases/invalid_imports",
"crates/base/test_cases/ai-ort-rust-backend/**/__snapshot__"
"crates/base/test_cases/ai-ort-rust-backend/**/__snapshot__",
"vendor/**"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.93.2.wasm",
Expand Down
28 changes: 19 additions & 9 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,10 @@ winapi = "=0.3.9"
windows-sys = { version = "0.59.0", features = ["Win32_Foundation", "Win32_Media", "Win32_Storage_FileSystem"] }

[patch.crates-io]
# If the PR is merged upstream, remove the line below.
deno_core = { git = "https://github.com/supabase/deno_core", branch = "324-supabase" }
eszip = { git = "https://github.com/supabase/eszip", branch = "fix-pub-vis-0-80-1" }
v8 = { git = "https://github.com/supabase/rusty_v8", tag = "v130.0.7" }
deno_unsync = { path = "./vendor/deno_unsync" }

[profile.dind]
inherits = "dev"
Expand Down
1 change: 1 addition & 0 deletions crates/base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ urlencoding.workspace = true
uuid.workspace = true

arc-swap = "1.7"
async-scoped = { version = "0.9", features = ["use-tokio"] }
cooked-waker = "5"
flume = "0.11.0"
strum = { version = "0.25", features = ["derive"] }
Expand Down
Loading