add signal-gateway app-code crate

This commit is contained in:
Chris Beck
2025-12-09 11:01:42 -07:00
parent 775c66b287
commit f4cf5b50bf
4 changed files with 835 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[package]
name = "signal-gateway-app-code"
version = "0.1.0"
edition.workspace = true
[lints]
workspace = true
[dependencies]
signal-gateway = { path = "../signal-gateway", default-features = false }
async-trait = { workspace = true }
conf = { workspace = true }
flate2 = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tar = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }