diff options
Diffstat (limited to 'examples/example-async-support/Cargo.toml')
| -rw-r--r-- | examples/example-async-support/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/example-async-support/Cargo.toml b/examples/example-async-support/Cargo.toml new file mode 100644 index 0000000..3a66e52 --- /dev/null +++ b/examples/example-async-support/Cargo.toml @@ -0,0 +1,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"] |
