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
|
|
|
|
2025-09-14 13:01:58 -07:00
|
|
|
godot = { version = "0.1", features = ["experimental-threads"] }
|
2025-08-14 20:29:19 +03:00
|
|
|
|
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]
|
2025-09-14 13:01:58 -07:00
|
|
|
opt-level = 3
|
2025-09-25 21:10:23 +03:00
|
|
|
lto = true
|
|
|
|
|
codegen-units = 1
|
2025-09-14 13:08:51 -07:00
|
|
|
strip = true
|
2025-09-25 21:10:23 +03:00
|
|
|
panic = "abort"
|