Files
leonwww/protocol/gdextension/Cargo.toml

28 lines
491 B
TOML
Raw Normal View History

[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" }
godot = "0.1"
2025-08-15 13:52:01 +03:00
tokio = { version = "1.0", features = ["rt"] }
url = "2.5"
serde_json = "1.0"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true