I still need to solve type checking cycle to be able to compile
This commit is contained in:
Théo Monnom
2022-12-22 00:44:40 +01:00
parent 2a83ec8376
commit c1cba8dcbd
9 changed files with 201 additions and 103 deletions
+2
View File
@@ -0,0 +1,2 @@
[target.x86_64-pc-windows-msvc]
rustflags = ["-C", "target-feature=+crt-static"]
+1 -1
View File
@@ -1,4 +1,4 @@
[workspace]
members = ["*"]
exclude = ["target"]
exclude = ["target", ".cargo"]
resolver = "2"
+1 -6
View File
@@ -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()