mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-07 00:00:09 +02:00
Created a simple echo TCP server that on two different runtimes that is called from a GitHub action using Valgrind to ensure that there are no memory leaks. Fixes: #3022
15 lines
330 B
TOML
15 lines
330 B
TOML
[package]
|
|
name = "stress-test"
|
|
version = "0.1.0"
|
|
authors = ["Tokio Contributors <[email protected]>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = {path = "../tokio/", features = ["full"]}
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.3"
|