[package] name = "pdc-core" version = "0.1.2" edition = "2021" license = "Apache-2.0" description = "A network load testing library" readme = "README.md" repository = "https://gitlab.com/liamwarfield/pdc" documentation = "https://docs.rs/pdc-core" authors = ["Liam Warfield "] keywords = ["networking", "loadtesting"] categories = ["network-programming", "development-tools::profiling"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "pdc_core" path = "src/lib.rs" [dependencies] tokio = { version="1.17", features = ["full", "stats"] } reqwest = {version="0.11.9", features = ["blocking"]} csv = "1.1.6" hyper = {version = "0.14.17", features= ["http2", "client"]} hyper-tls = "0.5.0" serde = {version = "1.0.136", features = ["derive"]} itertools = "0.10.3" crossbeam-channel = "0.5.2" futures = "0.3" core_affinity = "0.5.10" [dependencies.pnet] version = "0.28.0"