[package]
edition = "2024"
rust-version = "1.88"
name = "q"
version = "0.1.1"
authors = [
"kbve",
"h0lybyte",
]
build = false
exclude = [
"release/*",
"docs/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Q is a Rust GDExtension crate for Godot, offering a Game Manager, Music Manager, Bevy ECS, and Tokio-powered multi-threading. It simplifies and enhances game development with efficient tools and scalable performance."
homepage = "https://kbve.com/application/rust/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/KBVE/kbve/tree/main/packages/rust/q"
resolver = "2"
[lib]
name = "q"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies.bitflags]
version = "2.9.0"
features = ["serde"]
[dependencies.crossbeam-channel]
version = "0.5.15"
[dependencies.dashmap]
version = "6.1.0"
[dependencies.godot]
version = "0.4.5"
features = [
"experimental-wasm",
"experimental-threads",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[target.'cfg(target_os = "linux")'.dependencies.http]
version = "1.4.0"
[target.'cfg(target_os = "linux")'.dependencies.infer]
version = "0.19.0"
[target.'cfg(target_os = "linux")'.dependencies.raw-window-handle]
version = "0.6.2"
[target.'cfg(target_os = "linux")'.dependencies.tokio]
version = "1.49"
features = [
"full",
"rt-multi-thread",
]
[target.'cfg(target_os = "linux")'.dependencies.wry]
version = "0.54.2"
features = [
"transparent",
"devtools",
]
[target.'cfg(target_os = "macos")'.dependencies.http]
version = "1.4.0"
[target.'cfg(target_os = "macos")'.dependencies.infer]
version = "0.19.0"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6.3"
[target.'cfg(target_os = "macos")'.dependencies.raw-window-handle]
version = "0.6.2"
[target.'cfg(target_os = "macos")'.dependencies.tokio]
version = "1.49"
features = [
"full",
"rt-multi-thread",
]
[target.'cfg(target_os = "macos")'.dependencies.wry]
version = "0.54.2"
features = [
"transparent",
"devtools",
]
[target.'cfg(target_os = "windows")'.dependencies.http]
version = "1.4.0"
[target.'cfg(target_os = "windows")'.dependencies.infer]
version = "0.19.0"
[target.'cfg(target_os = "windows")'.dependencies.raw-window-handle]
version = "0.6.2"
[target.'cfg(target_os = "windows")'.dependencies.tokio]
version = "1.49"
features = [
"full",
"rt-multi-thread",
]
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.62.2"
features = [
"Data_Xml_Dom",
"Win32_Security",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
]
[target.'cfg(target_os = "windows")'.dependencies.wry]
version = "0.54.2"
features = [
"transparent",
"devtools",
]
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
debug = 0