Some checks failed
Build Gurty / Build Gurty (, ubuntu-latest, linux, x86_64-unknown-linux-gnu) (push) Failing after 1m33s
Build GurtCA / Build GurtCA (, ubuntu-latest, linux, x86_64-unknown-linux-gnu) (push) Failing after 11m20s
Build GDExtension / Build GDExtension (libgurt_godot.so, ubuntu-latest, linux, x86_64-unknown-linux-gnu) (push) Failing after 16m9s
Build Flumi / Build Flumi (Linux, 4.4.1, ubuntu-latest, linux) (push) Failing after 2h10m11s
Build Flumi / Build Flumi (Windows Desktop, 4.4.1, windows-latest, windows) (push) Has been cancelled
Build GDExtension / Build GDExtension (gurt_godot.dll, windows-latest, windows, x86_64-pc-windows-msvc) (push) Has been cancelled
Build GurtCA / Build GurtCA (.exe, windows-latest, windows, x86_64-pc-windows-msvc) (push) Has been cancelled
Build Gurty / Build Gurty (.exe, windows-latest, windows, x86_64-pc-windows-msvc) (push) Has been cancelled
47 lines
859 B
TOML
47 lines
859 B
TOML
[package]
|
|
name = "gurtlib"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
authors = ["FaceDev"]
|
|
license = "MIT"
|
|
repository = "https://github.com/outpoot/gurted"
|
|
description = "Official lw:// protocol implementation"
|
|
|
|
[lib]
|
|
name = "gurtlib"
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.0", features = [
|
|
"net",
|
|
"io-util",
|
|
"rt",
|
|
"macros",
|
|
"rt-multi-thread",
|
|
"time",
|
|
"fs"
|
|
] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
tokio-rustls = "0.26"
|
|
rustls = "0.23"
|
|
rustls-pemfile = "2.0"
|
|
rustls-native-certs = "0.8"
|
|
base64 = "0.22"
|
|
url = "2.5"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
tracing-subscriber = "0.3"
|
|
sha2 = "0.10"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true |