aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-04-18 07:29:44 +0100
committerAkshay <[email protected]>2021-04-18 07:29:44 +0100
commit81488c3ea8d66680f739cee087ad9aa7619f5e0e (patch)
tree5ef0edb9401ee05a1999db2088d69daf0e0bb6ee /src/main.rs
parent73514f48554dcd860f1c1c675d53c8d3ae6aa800 (diff)
clippy lint; add `get-pixel` primitive
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index d6f0204..225c37c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,7 +1,8 @@
1#![allow( 1#![allow(
2 clippy::upper_case_acronyms, 2 clippy::upper_case_acronyms,
3 clippy::vec_init_then_push, 3 clippy::vec_init_then_push,
4 clippy::unsound_collection_transmute 4 clippy::unsound_collection_transmute,
5 clippy::new_without_default
5)] 6)]
6 7
7mod app; 8mod app;