forked from Houtamelo/gdext_coroutines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 763 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "gdext_coroutines"
version = "0.6.0"
authors = ["Houtamelo"]
edition = "2021"
description = "Run Rust Async functions and Coroutines in Godot 4.2+ (through GDExtension), inspired on Unity's Coroutines design."
license = "MIT"
repository = "https://github.com/Houtamelo/gdext_coroutines"
categories = ["game-development", "api-bindings", "asynchronous"]
keywords = ["godot", "coroutines", "gdextension", "async"]
readme = "../README.md"
exclude = [
".idea/*"
]
[lib]
crate-type = ["lib", "cdylib"]
[dependencies]
godot = { package = "godot", git = "https://github.com/godot-rust/gdext" }
smol = { version = "2.0", optional = true }
[features]
default = []
async = ["dep:smol"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]