aboutsummaryrefslogtreecommitdiff
path: root/examples/example-async-support/Cargo.toml
blob: d1b952d716b99d9cf13d0cb94e40880602db82d8 (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 `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"]

[workspace]