blob: a0d2a75864db71671e7ac839a10f9712e985c0d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[package]
name = "example-async-support"
version = "0.1.0"
edition = "2024"
[dependencies.mingling]
path = "../../mingling"
# Enable `picker` features
features = ["async", "picker"]
# Import any async runtime, e.g. Tokio
[dependencies.tokio]
version = "1.52.3"
features = ["macros", "rt", "rt-multi-thread", "time"]
[workspace]
|