diff options
| author | Adam Malczewski <[email protected]> | 2026-03-18 18:39:14 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-03-18 18:39:14 +0900 |
| commit | ef77f6d2d6ebe11d2c1afd93314d44840f6c7d77 (patch) | |
| tree | e03d9d381dad70748514e42d5356b77806d29cc9 /Cargo.toml | |
| download | webhook-forwarder-ef77f6d2d6ebe11d2c1afd93314d44840f6c7d77.tar.gz webhook-forwarder-ef77f6d2d6ebe11d2c1afd93314d44840f6c7d77.zip | |
init
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3b83602 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "webhook-forwarder" +version = "0.1.0" +edition = "2024" + +[dependencies] +bytes = "1.11.1" +http-body-util = "0.1.3" +hyper = { version = "1.8.1", features = ["server", "client", "http1"] } +hyper-util = { version = "0.1.20", features = ["tokio", "client-legacy", "http1"] } +tokio = { version = "1.50.0", features = ["rt-multi-thread", "net", "macros"] } |
