29 lines
541 B
TOML
29 lines
541 B
TOML
[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]
|
|
gurtlib = { path = "../library" }
|
|
|
|
godot = { version = "0.1", features = ["experimental-threads"] }
|
|
|
|
tokio = { version = "1.0", features = ["rt"] }
|
|
url = "2.5"
|
|
serde_json = "1.0"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
panic = "abort"
|