wip
I still need to solve type checking cycle to be able to compile
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
[target.x86_64-pc-windows-msvc]
|
||||
rustflags = ["-C", "target-feature=+crt-static"]
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
[workspace]
|
||||
members = ["*"]
|
||||
exclude = ["target"]
|
||||
exclude = ["target", ".cargo"]
|
||||
resolver = "2"
|
||||
|
||||
@@ -1,15 +1,10 @@
|
||||
use tracing_subscriber::prelude::*;
|
||||
mod app;
|
||||
mod events;
|
||||
mod video_grid;
|
||||
mod video_renderer;
|
||||
|
||||
fn main() {
|
||||
let fmt_layer = tracing_subscriber::fmt::Layer::default();
|
||||
|
||||
tracing_subscriber::registry()
|
||||
.with(fmt_layer)
|
||||
.init();
|
||||
tracing_subscriber::fmt::init();
|
||||
|
||||
let rt = tokio::runtime::Builder::new_multi_thread()
|
||||
.enable_all()
|
||||
|
||||
Reference in New Issue
Block a user