Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cfff2fd
chore: add dependencies
nyannyacha Jun 25, 2024
7f283db
chore: add `config.toml`
nyannyacha Oct 28, 2024
10bd89c
fix: align default resource limits as docs described
nyannyacha Oct 28, 2024
6f9425a
feat: support s3 file system
nyannyacha Oct 28, 2024
2bdb8f4
fix(sb_core): modify file api blocklist
nyannyacha Oct 28, 2024
fa323df
stamp: enable sync file api on testing
nyannyacha Oct 28, 2024
be0adcf
chore: update `.blocklisted`
nyannyacha Oct 28, 2024
7c7f421
stamp: polishing
nyannyacha Oct 29, 2024
662b02d
feat: support tmp file system
nyannyacha Oct 29, 2024
24af055
chore: add an integration test for tmp file system
nyannyacha Oct 29, 2024
0a92589
chore: update `Cargo.lock`
nyannyacha Oct 17, 2024
32ed0a1
stamp: make clippy happy
nyannyacha Oct 29, 2024
8d07aac
stamp: apply `cargo fmt`
nyannyacha Oct 29, 2024
a2d51be
stamp: don't use default member implementation
nyannyacha Oct 29, 2024
dcf13f2
stamp: adjust root path of module loader
nyannyacha Oct 29, 2024
28de6a0
stamp: polishing
nyannyacha Oct 29, 2024
c346e2c
chore: add another integration test for tmp file system
nyannyacha Oct 29, 2024
ca63eeb
chore: update `.blocklisted`
nyannyacha Oct 30, 2024
08d1019
chore: update integration tests for tmp file system
nyannyacha Oct 30, 2024
f83ef4f
chore(sb_core): update `bootstrap.js`
nyannyacha Oct 30, 2024
39ffd59
feat(sb_fs): add disk usage limit to tmp file system
nyannyacha Oct 30, 2024
87f0538
chore(sb_fs): add a dev dependency
nyannyacha Oct 31, 2024
7f08cdb
chore: update `Cargo.lock`
nyannyacha Oct 31, 2024
17f8c81
stamp: polishing tmp fs and adding more unit tests
nyannyacha Oct 31, 2024
5f85f9b
stamp: make clippy happy
nyannyacha Oct 31, 2024
52af82d
stamp: oops
nyannyacha Oct 31, 2024
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
7 changes: 7 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[env]
# https://supabase.com/docs/guides/functions/limits
SUPABASE_RESOURCE_LIMIT_MEM_MB = "256"
SUPABASE_RESOURCE_LIMIT_LOW_MEM_MULTIPLIER = "5"
SUPABASE_RESOURCE_LIMIT_CPU_SOFT_MS = "1000"
SUPABASE_RESOURCE_LIMIT_CPU_HARD_MS = "2000"
SUPABASE_RESOURCE_LIMIT_TIMEOUT_MS = "400000"
Loading