83 lines
2.4 KiB
TOML
83 lines
2.4 KiB
TOML
# file: Cargo.toml
|
|
# version: 106
|
|
|
|
[workspace]
|
|
resolver = "3"
|
|
members = [
|
|
"crates/engines/engine-v1-common",
|
|
"crates/engines/engine-v1-platform-api",
|
|
"crates/engines/engine-v1-sdl",
|
|
"crates/games/game-reflex-poc",
|
|
"crates/games/game-snake-poc",
|
|
"crates/apps/game-realtime-transport-fallback-smoke",
|
|
"crates/apps/game-realtime-websocket-smoke",
|
|
"crates/apps/game-realtime-webtransport-browser-smoke",
|
|
"crates/apps/game-realtime-webtransport-smoke",
|
|
"crates/apps/game-reflex-poc-desktop",
|
|
"crates/apps/game-snake-poc-desktop",
|
|
"crates/common/game-assets-lib",
|
|
"crates/common/game-logging-lib",
|
|
"crates/common/game-realtime-transport-lib",
|
|
"crates/common/game-realtime-websocket-lib",
|
|
"crates/common/game-realtime-webtransport-lib",
|
|
"crates/apps/game-android-entrypoint",
|
|
"crates/apps/game-reflex-poc-tauri",
|
|
"crates/apps/game-reflex-poc-wasm",
|
|
"crates/apps/game-snake-poc-wasm",
|
|
"crates/apps/game-snake-poc-tauri",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.3.5-alpha.8.fix.1"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
repository = "https://git.sasedev.com/Sasedev/games"
|
|
authors = ["Sasedev <games@sasedev.com>"]
|
|
publish = false
|
|
|
|
[workspace.dependencies]
|
|
futures-util = { version = "0.3.34", default-features = false }
|
|
gloo-timers = "0.4.0"
|
|
rcgen = { version = "0.14.10", default-features = false }
|
|
serde = { version = "1", features = ["derive"] }
|
|
sdl3 = "^0.20"
|
|
tracing = "0.1.44"
|
|
tracing-android = "0.2.0"
|
|
tracing-appender = "0.2.5"
|
|
tracing-subscriber = "0.3.23"
|
|
tauri = "2"
|
|
tauri-build = "2"
|
|
tauri-plugin-tracing = "^0.3"
|
|
tokio = "1.53.1"
|
|
tokio-tungstenite = { version = "0.30.0", default-features = false }
|
|
url = "2.5.8"
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
web-transport-quinn = { version = "0.12.1", default-features = false }
|
|
web-transport-wasm = "0.6.0"
|
|
|
|
[workspace.lints.rust]
|
|
missing_docs = "warn"
|
|
unreachable_pub = "deny"
|
|
unsafe_code = "forbid"
|
|
|
|
[workspace.lints.clippy]
|
|
unwrap_used = "deny"
|
|
expect_used = "deny"
|
|
implicit_return = "deny"
|
|
needless_return = "allow"
|
|
useless_vec = "deny"
|
|
question_mark = "deny"
|
|
question_mark_used = "deny"
|
|
needless_match = "allow"
|
|
manual_ok_err = "allow"
|
|
manual_unwrap_or = "allow"
|
|
manual_map = "allow"
|
|
match_like_matches_macro = "allow"
|
|
single_match = "allow"
|
|
manual_unwrap_or_default = "allow"
|
|
manual_find = "allow"
|
|
explicit_counter_loop = "allow"
|
|
get_first = "allow"
|
|
implicit_saturating_sub = "allow"
|