mirror of
https://github.com/thilo-behnke/wasm-pong.git
synced 2026-07-12 19:19:16 +00:00
18 lines
458 B
TOML
18 lines
458 B
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
kafka = { version = "0.8.0" }
|
|
hyper = {version = "0.14.18", features = ["full"]}
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = {version = "0.1" }
|
|
serde_json = { version = "1.0.79" }
|
|
pong = { path = "../pong", version = "0.1.0" }
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.12.0"
|