Skip to content

Commit b7c6591

Browse files
committed
redo webhook worker interface
1 parent 7dfe826 commit b7c6591

File tree

6 files changed

+465
-1
lines changed

6 files changed

+465
-1
lines changed

Cargo.lock

Lines changed: 38 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[workspace]
22
resolver = "2"
3-
members = [ "aa-core", "core","server", "twmq"]
3+
members = ["aa-core", "core", "executors", "server", "twmq"]

core/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ vault-sdk = { version = "0.1.0", git = "ssh://git@github.com/thirdweb-dev/vault.
1515
tower = "0.5.2"
1616
tracing = "0.1.41"
1717
async-nats = "0.40.0"
18+
twmq = { version = "0.1.0", path = "../twmq" }

executors/Cargo.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "engine-executors"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]
7+
hex = "0.4.3"
8+
hmac = "0.12.1"
9+
reqwest = "0.12.15"
10+
serde = "1.0.219"
11+
serde_json = "1.0.140"
12+
sha2 = "0.10.9"
13+
thiserror = "2.0.12"
14+
tracing = "0.1.41"
15+
twmq = { version = "0.1.0", path = "../twmq" }

executors/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod webhook;

0 commit comments

Comments
 (0)