Bump version
CI / build (push) Failing after 1m38s Details

This commit is contained in:
Fabian Stamm 2024-04-14 00:30:57 +02:00
parent 9bc700e0f6
commit f2ad24655c
2 changed files with 12 additions and 8 deletions

2
Cargo.lock generated
View File

@ -838,7 +838,7 @@ dependencies = [
[[package]]
name = "rustocat"
version = "0.1.12"
version = "0.1.13"
dependencies = [
"async-trait",
"chrono",

View File

@ -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*