aboutsummaryrefslogtreecommitdiff
path: root/examples/example-async-support/Cargo.toml
blob: 3a66e52c1deb68883c18e12d96b15911b3ec8f13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "example-async-support"
version = "0.1.0"
edition = "2024"

[dependencies.mingling]
path = "../../mingling"

# Enable `parser` features
features = ["async", "parser"]

# Import any async runtime, e.g. Tokio
[dependencies.tokio]
version = "1.52.3"
features = ["macros", "rt", "rt-multi-thread", "time"]