Skip to content
Open
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,410 changes: 801 additions & 609 deletions server/Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ svix-server_derive = { opt-level = 0 }

[patch.crates-io]
hyper = { git = "https://github.com/svix/hyper.git", rev = "18c04c321e1a9a4958ad14b880f7403acbe1c914" }
antlr4rust = { git = "https://github.com/antlr4rust/antlr4.git", branch = "rust-target" }
2 changes: 2 additions & 0 deletions server/svix-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ urlencoding = "2.1.2"
# haven't gotten around to doing a proper upgrade yet (0.17 is a large
# rewrite with a barely-useful changelog)
validator = { git = "https://github.com/svix/validator.git", rev = "aebdc34a4ed72524902ff6d63397b9c435b0578f", features = ["derive"] }
cel = "0.11.1"
once_cell = "1.19"

[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { version = "0.6", optional = true }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Drop filter column from endpoint table
ALTER TABLE endpoint
DROP COLUMN IF EXISTS filter;


Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Add optional filter column to endpoint table for payload-level filtering expressions
ALTER TABLE endpoint
ADD COLUMN IF NOT EXISTS filter TEXT NULL;


Loading