desktop: Fix app not running on Windows (fix #5534)

Rust 1.56 introduced a bad interaction between env_logger and
`#[windows_subsytem]` that caused Ruffle to panic immediately on run.

See:
https://github.com/rust-lang/rust/issues/88576

Disabling the atty and termcolor features of env_logger avoids
the problem. Can re-enable when the above issue is fixed on Rust
stable.

Fixes #5534.
This commit is contained in:
Mike Welsh 2021-10-24 11:56:55 -07:00
parent 1fec012053
commit f18c47ebf2
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ clap = "3.0.0-beta.5"
cpal = "0.13.4" cpal = "0.13.4"
ruffle_core = { path = "../core" } ruffle_core = { path = "../core" }
ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] } ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] }
env_logger = "0.9.0" env_logger = { version = "0.9", default-features = false, features = ["humantime", "regex"] }
generational-arena = "0.2.8" generational-arena = "0.2.8"
log = "0.4" log = "0.4"
winit = "0.25.0" winit = "0.25.0"