From 749a4102f2561b0a9638630797522426e0545df5 Mon Sep 17 00:00:00 2001 From: SinuS Von SifriduS Date: Fri, 17 Apr 2026 19:35:08 +0200 Subject: [PATCH] 0.3.0 --- Cargo.toml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d6f8700..8673fe0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.2.0" +version = "0.3.0" edition = "2024" license = "MIT" repository = "https://git.sasedev.com/Sasedev/khadhroony-bobot" @@ -45,3 +45,15 @@ tracing = { version = "^0.1", features = [] } tracing-subscriber = { version = "^0.3", features = ["ansi", "env-filter", "chrono", "serde", "json"] } yellowstone-grpc-client = { version = "^13.0", features = [] } yellowstone-grpc-proto = { version = "^12.2", features = [] } +uuid = { version = "^1.23", features = ["v4", "serde"] } + +[profile.dev] +incremental = true # Compile your binary in smaller steps. + +[profile.release] +codegen-units = 1 # Allows LLVM to perform better optimization. +lto = true # Enables link-time-optimizations. +opt-level = 3 # s Prioritizes small binary size. Use `3` if you prefer speed. +panic = "abort" # Higher performance by disabling panic handlers. +strip = true # Ensures debug symbols are removed. +