mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
30 lines
864 B
TOML
30 lines
864 B
TOML
[workspace]
|
|
members = ["tangled"]
|
|
|
|
[package]
|
|
name = "noita-proxy"
|
|
version = "0.4.1"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tungstenite = "0.21.0"
|
|
eframe = { version="0.27.2", features = ["persistence", "glow", "default_fonts"], default_features = false }
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
tracing = "0.1.40"
|
|
tangled = { path = "tangled" }
|
|
serde = { version = "1.0.199", features = ["serde_derive"] }
|
|
bitcode = "0.6.0"
|
|
lz4_flex = { version = "0.11.3", default_features = false, features = ["std"]}
|
|
rand = "0.8.5"
|
|
steamworks = "0.11.0"
|
|
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
|
|
clipboard = "0.5.0"
|
|
socket2 = { version = "0.5.7", features = ["all"] }
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[profile.release]
|
|
lto = "thin"
|