noita_entangled_worlds/noita-proxy/Cargo.toml

61 lines
1.8 KiB
TOML
Raw Normal View History

2024-05-01 22:22:48 +03:00
[workspace]
members = ["tangled"]
[package]
name = "noita-proxy"
description = "Noita Entangled Worlds companion app."
2024-07-19 12:16:12 +03:00
version = "0.14.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tungstenite = "0.21.0"
2024-05-03 23:38:40 +03:00
eframe = { version="0.27.2", features = ["persistence", "glow", "default_fonts"], default_features = false }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2024-05-01 20:26:37 +03:00
tracing = "0.1.40"
tangled = { path = "tangled" }
2024-05-23 21:02:39 +03:00
serde = { version = "1.0.199", features = ["serde_derive", "derive"] }
2024-05-01 20:26:37 +03:00
bitcode = "0.6.0"
lz4_flex = { version = "0.11.3", default_features = false, features = ["std"]}
2024-05-13 21:00:00 +03:00
rand = "0.8.5"
2024-05-17 17:55:50 +03:00
steamworks = "0.11.0"
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
clipboard = "0.5.0"
socket2 = { version = "0.5.7", features = ["all"] }
2024-05-23 21:02:39 +03:00
egui-file-dialog = "0.5.0"
2024-06-11 11:16:44 +03:00
reqwest = { version = "0.12.4", features = ["blocking", "json", "http2", "rustls-tls-native-roots", "charset"], default_features = false}
2024-05-23 21:02:39 +03:00
serde_json = "1.0.117"
thiserror = "1.0.61"
poll-promise = "0.3.0"
zip = "1.3.1"
2024-05-24 00:41:55 +03:00
self-replace = "1.3.7"
2024-06-11 00:42:43 +03:00
image = { version = "0.24.9", default_features = false, features = ["png", "webp"] }
2024-05-31 16:40:18 +03:00
egui_extras = { version = "*", features = ["all_loaders"] }
2024-06-03 01:07:36 +03:00
bytemuck = { version = "1.16.0", features = ["derive"] }
bincode = "1.3.3"
2024-06-04 21:53:34 +03:00
rustc-hash = "1.1.0"
2024-06-08 14:25:57 +03:00
fluent-templates = "0.9.4"
unic-langid = { version = "0.9.5", features = ["serde"] }
2024-06-09 17:16:33 +03:00
fluent-bundle = "0.15.3"
2024-06-21 19:06:40 +03:00
egui_plot = "0.27.2"
2024-06-21 23:59:44 +03:00
crc = "3.2.1"
2024-07-04 22:59:11 +03:00
argh = "0.1.12"
2024-07-06 13:44:31 +03:00
shlex = "1.3.0"
2024-07-10 13:17:15 +03:00
quick-xml = { version = "0.36.0", features = ["serialize"] }
[build-dependencies]
winresource = "0.1.17"
2024-05-03 23:38:40 +03:00
[profile.dev]
opt-level = 1
[profile.release-lto]
inherits = "release"
lto = "fat"
2024-06-05 02:25:52 +03:00
[profile.release-debug]
inherits = "release"
debug = true
lto = false