first implementation

This commit is contained in:
2024-05-29 18:49:28 +08:00
commit 3079e602c8
31 changed files with 5415 additions and 0 deletions

16
signaling/Cargo.toml Normal file
View File

@ -0,0 +1,16 @@
[package]
name = "signaling"
version = "0.1.0"
edition = "2021"
[dependencies]
tonic = "0.11"
prost = "0.12"
serde = { version = "1" }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
[build-dependencies]
tonic-build = "0.11"
[dev-dependencies]
serde_json = "1"