powlib/examples/futures/Cargo.toml

18 lines
402 B
TOML
Raw Normal View History

[package]
name = "powlib-futures-example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num_cpus = "1.16.0"
powlib = { path = '../..', features = [ "tokio_futures" ] }
tokio = { version = "1.26.0", features = [ "full" ]}
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = "z"
strip = true