fix formatting
- SHA
f724b591716a99806a56db8865d998ee45749fa9- Parents
-
94fc8e8 - Tree
5e07cec
f724b59
f724b591716a99806a56db8865d998ee45749fa994fc8e8
5e07cec| Status | File | + | - |
|---|---|---|---|
| M |
tarmac/src/core/mod.rs
|
2 | 2 |
| M |
tarmac/src/lib.rs
|
2 | 2 |
| M |
tarmac/src/main.rs
|
2 | 2 |
| M |
tarmac/src/platform/mod.rs
|
3 | 3 |
tarmac/src/core/mod.rsmodified@@ -1,4 +1,4 @@ | ||
| 1 | +pub mod monitor; | |
| 1 | 2 | pub mod tree; |
| 2 | -pub mod workspace; | |
| 3 | 3 | pub mod window; |
| 4 | -pub mod monitor; | |
| 4 | +pub mod workspace; | |
tarmac/src/lib.rsmodified@@ -1,5 +1,5 @@ | ||
| 1 | -pub mod core; | |
| 2 | -pub mod platform; | |
| 3 | 1 | pub mod config; |
| 2 | +pub mod core; | |
| 4 | 3 | pub mod ipc; |
| 4 | +pub mod platform; | |
| 5 | 5 | pub mod ui; |
tarmac/src/main.rsmodified@@ -18,8 +18,8 @@ fn main() { | ||
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | fn init_logging() { |
| 21 | - let filter = EnvFilter::try_from_default_env() | |
| 22 | - .unwrap_or_else(|_| EnvFilter::new("tarmac=info")); | |
| 21 | + let filter = | |
| 22 | + EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new("tarmac=info")); | |
| 23 | 23 | |
| 24 | 24 | tracing_subscriber::fmt() |
| 25 | 25 | .with_env_filter(filter) |
tarmac/src/platform/mod.rsmodified@@ -1,5 +1,5 @@ | ||
| 1 | -pub mod permissions; | |
| 2 | 1 | pub mod accessibility; |
| 3 | -pub mod event_tap; | |
| 4 | -pub mod display; | |
| 5 | 2 | pub mod application; |
| 3 | +pub mod display; | |
| 4 | +pub mod event_tap; | |
| 5 | +pub mod permissions; | |