diff --git a/Cargo.lock b/Cargo.lock index 46f04e2..4588c7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -838,7 +838,7 @@ dependencies = [ [[package]] name = "rustocat" -version = "0.1.12" +version = "0.1.13" dependencies = [ "async-trait", "chrono", diff --git a/Cargo.toml b/Cargo.toml index b1ac83b..0142bc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustocat" -version = "0.1.12" +version = "0.1.13" edition = "2021" description = "Socat in rust with many less features and a configuration file" license = "ISC" @@ -20,11 +20,15 @@ log = "0.4" fern = "0.6" chrono = "0.4" async-trait = "0.1" -reqwest = { version = "0.11", features = ["json", "rustls", "hyper-tls"], default-features = false } +reqwest = { version = "0.11", features = [ + "json", + "rustls", + "hyper-tls", +], default-features = false } [profile.release] -opt-level = 3 # Optimize for size. -lto = true # Enable Link Time Optimization -codegen-units = 1 # Reduce number of codegen units to increase optimizations. -panic = 'abort' # Abort on panic -strip = true # Strip symbols from binary* +opt-level = 3 # Optimize for size. +lto = true # Enable Link Time Optimization +codegen-units = 1 # Reduce number of codegen units to increase optimizations. +panic = 'abort' # Abort on panic +strip = true # Strip symbols from binary*