mirror of
https://github.com/flibusta-apps/meilie_updater.git
synced 2025-12-06 15:15:37 +01:00
Some checks failed
Build docker image / Build-Docker-Image (push) Has been cancelled
37 lines
821 B
TOML
37 lines
821 B
TOML
[package]
|
|
name = "meili_updater"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|
|
strip = false
|
|
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.44.2", features = ["full"] }
|
|
axum = "0.8.1"
|
|
sentry = { version = "0.41.0", features = ["debug-images"] }
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"]}
|
|
sentry-tracing = "0.41.0"
|
|
tower-http = { version = "0.6.2", features = ["trace"] }
|
|
lazy_static = "1.5.0"
|
|
log = "0.4.26"
|
|
env_logger = "0.11.7"
|
|
tokio-postgres = { version = "0.7.13", features = ["with-chrono-0_4"] }
|
|
deadpool-postgres = "0.14.1"
|
|
meilisearch-sdk = "0.28.0"
|
|
futures = "0.3.31"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|