Crates.io | my-awesome-rabbitmq-lib |
lib.rs | my-awesome-rabbitmq-lib |
version | 0.2.5 |
source | src |
created_at | 2024-10-08 13:27:00.820459 |
updated_at | 2024-11-07 19:51:17.737556 |
description | A Rust library for working with RabbitMQ and asynchronous operations |
homepage | |
repository | https://github.com/yourusername/rust-library |
max_upload_size | |
id | 1401206 |
size | 124,058 |
rust-library
To generate the file
fd -e go . ./golang_library | xargs -I {} sh -c 'echo "// {}"; cat "{}"' | tee library.go
fd -e ts . ./packages/legend-transac/src/ | xargs -I {} sh -c 'echo "// {}"; cat "{}"' | tee library.ts
fd -e rs . ./src/ | xargs -I {} sh -c 'echo "// {}"; cat "{}"' | tee library.rs
Steps to publish the app
Pendientes:
It has std
y events
features flags, std
is the main app, events = ["serde", "strum", "strum_macros"]
is used to handle types, payloads, enum, struct of the app
Due to global vars like the connection and the publish-channel, the test can have different behaviors when
are tested alone or with other tests. The global vars cannot be unset/reset, implies a mut static
var, which is not allowed in Rust.