rs_infras

Crates.iors_infras
lib.rsrs_infras
version0.3.2
created_at2022-10-23 03:00:20.478751+00
updated_at2025-11-08 09:39:54.558995+00
descriptionrust infras
homepage
repositoryhttps://github.com/rs-god/rs-infras
max_upload_size
id695030
size161,423
heige (daheige)

documentation

https://docs.rs/rs-infras/

README

rs-infras

  • rust infras includes the packaging of mysql(sqlx),redis,kafka and other basic libraries
  • which facilitates rust development without worrying about the underlying details and enables rust developers to focus more on the development of business logic.

reference crates

dependencies

Cargo.toml

[dependencies]
# redis use tokio async
redis = { version = "0.32.7", features = ["r2d2", "tokio-comp", "cluster","cluster-async", "json"] }
r2d2 = "0.8.10"

sqlx = { version = "0.8.6", features = ["runtime-tokio", "mysql", "chrono", "time"] }

tokio = { version = "1.48.0", features = ["full"] }
futures = "0.3.31"
chrono = "0.4.42"

# pulsar
pulsar = "6.5.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"

# serde yaml for config read
serde_yaml = "0.9.33"

# crypto
aes = "0.8.4"
cbc = "0.1.2"
rand = "0.9.2"
base64 = "0.22.1"

license

MIT
Commit count: 19

cargo fmt