2023-09-30 23:12:11 +00:00
|
|
|
[package]
|
|
|
|
name = "lavina-core"
|
|
|
|
edition = "2021"
|
|
|
|
version.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2024-04-23 16:26:40 +00:00
|
|
|
sqlx = { version = "0.7.4", features = ["sqlite", "migrate", "chrono"] }
|
2023-09-30 23:12:11 +00:00
|
|
|
serde.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
prometheus.workspace = true
|
2024-04-21 21:00:44 +00:00
|
|
|
chrono.workspace = true
|
2024-04-23 16:31:00 +00:00
|
|
|
argon2 = { version = "0.5.3" }
|
|
|
|
rand_core = { version = "0.6.4", features = ["getrandom"] }
|
2024-05-10 20:44:24 +00:00
|
|
|
reqwest.workspace = true
|
|
|
|
reqwest-middleware = { version = "0.3", features = ["json"] }
|
|
|
|
opentelemetry = "0.22.0"
|
|
|
|
mgmt-api = { path = "../mgmt-api" }
|
|
|
|
reqwest-tracing = { version = "0.5", features = ["opentelemetry_0_22"] }
|