From 028b13ae282cf8f46d91e195eae057d3834c8242 Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sat, 14 May 2022 18:36:12 -0500 Subject: [PATCH] Fix last warning --- Cargo.toml | 4 +--- src/main.rs | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 77cda36..e119600 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,7 @@ name = "IBConverter" version = "0.1.0" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] yaml-rust = "0.4" serde = "1.0" -serde_yaml = "0.8" +serde_yaml = "0.8" \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 7948a4b..226e163 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,4 @@ +#![allow(non_snake_case)] use std::{env, fs, io}; use std::collections::{BTreeMap}; use std::io::{Read};