2025-08-14 20:29:19 +03:00
|
|
|
[package]
|
|
|
|
|
name = "gurt-godot"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["FaceDev"]
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/outpoot/gurted"
|
|
|
|
|
description = "GURT protocol GDExtension for Godot"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "gurt_godot"
|
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-09-09 19:01:46 +03:00
|
|
|
gurtlib = { path = "../library" }
|
2025-08-14 20:29:19 +03:00
|
|
|
|
|
|
|
|
godot = "0.1"
|
|
|
|
|
|
2025-08-15 13:52:01 +03:00
|
|
|
tokio = { version = "1.0", features = ["rt"] }
|
2025-08-14 20:29:19 +03:00
|
|
|
url = "2.5"
|
2025-08-18 17:45:46 +03:00
|
|
|
serde_json = "1.0"
|
2025-08-14 20:29:19 +03:00
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
opt-level = "z"
|
|
|
|
|
lto = true
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
panic = "abort"
|
|
|
|
|
strip = true
|