Files
slingshot-microservice/Cargo.toml
Seán Healy 13b82d66c6 Do some connection pooling.
This prevents exhaustion of connections and also
has some performance benefits.
2026-05-01 21:29:04 +01:00

31 lines
849 B
TOML

[package]
name = "slingshot-microservice"
version = "0.1.0"
edition = "2021"
description = "Opinionated Rust framework for queue-driven microservices"
license = "MIT"
[lib]
crate-type = ["rlib", "cdylib"]
[features]
default = []
python = ["dep:pyo3"]
[dependencies]
aws-config = "1"
aws-sdk-s3 = "1"
futures-util = "0.3"
lapin = "2"
diesel = { version = "2", features = ["postgres", "r2d2"] }
reqwest = { version = "0.12", features = ["blocking", "json", "rustls-tls"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
pyo3 = { version = "0.23", optional = true, features = ["extension-module", "abi3-py38"] }
[dev-dependencies]
anyhow = "1"